:root {
    --primary-color: #5D0000; /* Deep Maroon */
    --secondary-color: #C5A059; /* Gold */
    --accent-color: #8B0000;
    --text-light: #FDF5E6; /* Cream */
    --text-muted: rgba(253, 245, 230, 0.7);
    --bg-dark: #1A0505;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Elements */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 0, 0, 0.15) 0%, rgba(26, 5, 5, 1) 70%);
    z-index: -1;
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/image.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(100%) sepia(50%) brightness(50%);
}

.container {
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    padding: 20px;
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5vh;
}

/* Logo & Header */
.header {
    margin-bottom: 0;
}

.logo-image {
    max-width: 240px;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
    transition: all 0.5s ease;
}

.logo-image:hover {
    transform: translateY(-5px) scale(1.02);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6)) grayscale(0%);
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Main Content */
.main-content {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 7vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-light);
}

.title span {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--secondary-color);
    margin-top: 10px;
}

.description {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* WhatsApp Call to Action */
.whatsapp-wrapper {
    margin-top: 25px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn i {
    font-size: 1.6rem;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

.whatsapp-btn:active {
    transform: translateY(-2px);
}

/* Footer & Socials */
.footer {
    padding-top: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
}



/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fadeIn 1.2s ease forwards; }
.animate-fade-up { animation: fadeUp 1.2s ease forwards; }
.animate-fade-down { animation: fadeDown 1.2s ease forwards; }

.delay-1 { animation-delay: 0.3s; opacity: 0; }
.delay-2 { animation-delay: 0.6s; opacity: 0; }
.delay-3 { animation-delay: 0.9s; opacity: 0; }
.delay-4 { animation-delay: 1.2s; opacity: 0; }

/* Responsive Grid/Layout Tweaks */
@media (max-width: 768px) {
    .logo-image { max-width: 180px; }
    .title { font-size: 2.2rem; }
    .description { font-size: 0.95rem; }
    .whatsapp-btn { padding: 15px 30px; font-size: 1rem; }
}
