:root {
    /* Luxury Palette based on logo */
    --primary-gold: #c5a059;
    --primary-red: #b03052;
    --cream-light: #fdfbf7;

    --hover-gold: #debd7a;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --overlay-color: rgba(20, 10, 10, 0.65);
    /* Darker, warmer overlay */

    /* Glassmorphism adjustment */
    --glass-bg: rgba(20, 10, 10, 0.6);
    --glass-border: rgba(197, 160, 89, 0.3);
    /* Gold border hint */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: var(--font-body);
    color: var(--text-light);
    overflow-x: hidden;
}

body {
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    z-index: 0;
    backdrop-filter: blur(2px);
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeIn 1.5s ease-out;
}

/* Header & Logo */
.brand-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--primary-gold);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.brand-name .domain {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-gold);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.6;
    color: var(--primary-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Glassmorphism Card */
.content-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 3.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    margin-top: 1rem;
}

.main-heading {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    background: linear-gradient(to right, #fff, #e0e0e0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

/* Buttons */
.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn {
    text-decoration: none;
    padding: 1.1rem 3rem;
    border-radius: 2px;
    /* Sharper corners for luxury feel */
    font-family: var(--font-heading);
    /* Serif font for buttons */
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), #a38241);
    color: #1a1a1a;
    min-width: 280px;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.5);
    background: linear-gradient(135deg, #debd7a, var(--primary-gold));
}

.secondary-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 0.9rem 2.5rem;
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background-color: rgba(197, 160, 89, 0.1);
}

footer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .brand-logo {
        max-width: 140px;
    }

    .brand-name {
        font-size: 2.2rem;
    }

    .brand-name .domain {
        font-size: 1.2rem;
    }

    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .main-heading {
        font-size: 2rem;
    }

    .content-card {
        padding: 2.5rem 1.5rem;
        margin-top: 0;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1rem;
    }

    .secondary-actions {
        width: 100%;
        gap: 1rem;
        flex-direction: column;
    }
}