:root {
    --bg-color: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid #d4af37; /* Thin Golden Luxury Border */
    pointer-events: none;
    z-index: 9999;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    text-align: center;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 250px;
    height: auto;
}

/* Typography */
.domain-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Button */
.enquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--text-primary);
    color: var(--bg-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    transition: opacity 0.2s ease;
}

.enquire-btn:hover {
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 480px) {
    .domain-name {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 1.5rem;
    }
}

/* Modal Styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #999;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover,
.close-btn:focus {
    color: #1a1a1a;
    text-decoration: none;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.modal-content p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.email-box {
    margin-bottom: 1.5rem;
}

.email-link {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.copy-btn {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.copy-btn:hover {
    background-color: #f5f5f5;
}
