:root {
    --primary-color: #d4af37; /* Gold */
    --text-dark: #1a1a1a;
    --text-light: #fdfbf7;
    --bg-light: #f5f2eb;
    --card-bg: rgba(255, 255, 255, 0.65);
    --card-border: rgba(255, 255, 255, 0.8);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 242, 235, 0.4) 0%, rgba(26, 26, 26, 0.2) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    perspective: 1000px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 3rem 4rem;
    text-align: center;
    box-shadow: var(--shadow);
    transform-style: preserve-3d;
    animation: fadeUpIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

@keyframes fadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.logo-container {
    margin-bottom: 2rem;
    animation: fadeIn 1.5s ease-in-out 0.5s forwards;
    opacity: 0;
}

#brand-logo {
    max-height: 180px;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply; 
    filter: contrast(1.1);
    transition: transform 0.5s ease;
}

#brand-logo:hover {
    transform: scale(1.05);
}

.fallback-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 5px;
    color: var(--text-dark);
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 0.8s forwards;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 1.1s forwards;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 80%;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 1.4s forwards;
}

.divider {
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto 2rem;
    opacity: 0;
    animation: scaleXIn 1s ease-in-out 1.7s forwards;
}

@keyframes scaleXIn {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 2s forwards;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.info-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 2.3s forwards;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-links a:hover {
    background-color: var(--text-dark);
    color: var(--bg-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.notify-btn {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 3rem;
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 2.6s forwards;
    border-radius: 2px;
}

.notify-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--text-dark);
    transition: all 0.4s ease;
    z-index: -1;
}

.notify-btn:hover::before {
    left: 0;
}

.notify-btn:hover {
    color: var(--bg-light);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .glass-card {
        padding: 2.5rem 1.5rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .description {
        max-width: 100%;
    }
}
