:root {
    --primary-red: #841B1B;
    --accent-red: #B22222;
    --bg-cream: #F9F6F1;
    --text-dark: #2D2323;
    --text-muted: #5E4732;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.15);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    min-height: 100dvh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2 {
    font-family: 'Lora', serif;
}

/* --- Loader --- */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-out;
}

.loader.hide {
    opacity: 0;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    color: var(--text-muted);
    font-weight: 300;
    display: block;
    margin-bottom: 20px;
    animation: pulse 2s infinite ease-in-out;
}

.loader-line {
    width: 0;
    height: 1px;
    background: var(--primary-red);
    margin: 0 auto;
    animation: growLine 1.5s forwards ease-in-out;
}

@keyframes growLine {
    to { width: 150px; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; letter-spacing: 0.6rem; }
}

/* --- Hero Section --- */
.hero {
    min-height: 100dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 2rem 1rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    transition: var(--transition-slow);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: -1;
}

/* --- Navigation --- */
nav {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.logo-container {
    padding: 10px;
}

.logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 2px 15px rgba(255,255,255,0.2)) brightness(1.1);
}

/* --- Content --- */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    width: 100%;
    z-index: 10;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.sub-title {
    color: #FFB3B3; /* Lighter red for contrast */
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--white);
    margin: 1.5rem auto;
}

.tagline {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
}

.tagline span {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 5px;
    opacity: 0.9;
}

/* --- CTA --- */
.cta-section {
    margin-top: 3rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(132, 27, 27, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn:hover {
    background: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(132, 27, 27, 0.3);
}

.whatsapp-btn .icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* --- Footer --- */
footer {
    width: 100%;
    padding-bottom: 20px;
}

.social-teaser {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 15px rgba(0,0,0,1); /* Stronger shadow */
    font-weight: 400;
}

.insta-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.insta-link:hover {
    opacity: 0.8;
}

.brand-copy {
    font-size: 0.8rem;
    color: var(--white);
    opacity: 0.9;
    letter-spacing: 0.05rem;
    text-shadow: 0 2px 10px rgba(0,0,0,1);
    font-weight: 400;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

.visible .fade-in {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.delay-5 { transition-delay: 1s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 1rem;
    }
    .sub-title {
        font-size: 1.1rem;
    }
    .logo {
        height: 70px;
    }
    .cta-section {
        margin-top: 2rem;
    }
    .whatsapp-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

@media (max-height: 600px) {
    .hero {
        padding: 1rem;
    }
    .logo {
        height: 60px;
    }
    .main-title {
        font-size: 1.8rem;
    }
    .cta-section {
        margin-top: 1rem;
    }
}
