/* ==========================================================================
   KAHVÊRA COFFEE CO. - PREMIUM STYLESHEET
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Color Palette */
    --clr-bg: #0c0a09;          /* Deep Obsidian Brown/Black */
    --clr-surface: #171412;     /* Dark Charcoal Brown */
    --clr-surface-light: #241f1c;/* Lighter Surface for Cards */
    --clr-primary: #c5a880;     /* Brushed Champagne Gold */
    --clr-primary-hover: #b39369;
    --clr-primary-light: rgba(197, 168, 128, 0.15);
    --clr-accent: #8c6239;      /* Warm Copper / Coffee Brown */
    --clr-text-light: #f5f2eb;   /* Delicate Cream / Off-White */
    --clr-text-muted: #a8a29e;   /* Elegant Stone Gray */
    --clr-border: rgba(197, 168, 128, 0.12); /* Subtle Gold Border */
    --clr-white: #ffffff;
    
    /* Typography */
    --ff-heading: 'Playfair Display', Georgia, serif;
    --ff-body: 'Outfit', sans-serif;
    
    /* Spacing & Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 12px;
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text-light);
    font-family: var(--ff-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* --- Typography Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--ff-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--clr-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-family: var(--ff-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.2;
}

.section-title span {
    color: var(--clr-primary);
    font-style: italic;
    font-weight: 400;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* --- Button System --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-bg);
}

.btn-primary:hover {
    background-color: var(--clr-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--clr-border);
    color: var(--clr-text-light);
}

.btn-secondary:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* --- Header & Glassmorphism Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(12, 10, 9, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 14px 0;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--clr-white);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo span {
    font-family: var(--ff-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--clr-primary);
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--clr-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--clr-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--clr-white);
    transition: var(--transition-smooth);
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: rgba(12, 10, 9, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.5s ease-in-out;
        z-index: 999;
        justify-content: center;
        padding-top: 80px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 16px 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
        display: block;
        padding: 15px 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: zoomBackground 20s infinite alternate ease-in-out;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 24px;
    z-index: 2;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--clr-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--ff-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--clr-white);
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--clr-primary);
    font-style: italic;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@keyframes zoomBackground {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: var(--transition-smooth);
    z-index: 5;
}

.scroll-down:hover {
    opacity: 1;
}

.scroll-down .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--clr-text-muted);
    border-radius: 20px;
    position: relative;
}

.scroll-down .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--clr-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite ease-in-out;
}

.scroll-down .arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--clr-text-muted);
    border-bottom: 2px solid var(--clr-text-muted);
    transform: rotate(45deg);
    animation: scrollArrow 1.8s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% { opacity: 0; top: 8px; }
    50% { opacity: 1; }
    100% { opacity: 0; top: 22px; }
}

@keyframes scrollArrow {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(5px) rotate(45deg); }
}

/* --- About Section --- */
.about-section {
    padding: 120px 0;
    position: relative;
    border-bottom: 1px solid var(--clr-border);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-container {
    position: relative;
}

.about-img-box {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: var(--transition-smooth);
}

.about-img-box:hover .about-img {
    transform: scale(1.03);
}

.about-img-decorator {
    position: absolute;
    top: 20px;
    left: -20px;
    right: 20px;
    bottom: -20px;
    border: 2px solid var(--clr-primary);
    border-radius: var(--border-radius);
    z-index: -1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.about-img-box:hover .about-img-decorator {
    top: 15px;
    left: -15px;
}

.about-text-container {
    display: flex;
    flex-direction: column;
}

.about-p {
    font-size: 1.05rem;
    color: var(--clr-text-light);
    margin-bottom: 24px;
}

.about-p.text-muted {
    color: var(--clr-text-muted);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    border-top: 1px solid var(--clr-border);
    padding-top: 30px;
}

.stat-item {
    text-align: left;
}

.stat-num {
    display: block;
    font-family: var(--ff-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--clr-text-muted);
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-img-container {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

/* --- Features Section --- */
.features-section {
    padding: 120px 0;
    background-color: var(--clr-surface);
    border-bottom: 1px solid var(--clr-border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--clr-surface-light);
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius);
    padding: 45px 35px;
    text-align: left;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--clr-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(197, 168, 128, 0.25);
}

.feature-icon {
    color: var(--clr-primary);
    margin-bottom: 28px;
    display: inline-block;
    padding: 12px;
    background-color: rgba(197, 168, 128, 0.05);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background-color: var(--clr-primary);
    color: var(--clr-bg);
}

.feature-card h3 {
    font-family: var(--ff-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- Menu Section --- */
.menu-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--clr-border);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: transparent;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.tab-btn.active {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-bg);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.15);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    opacity: 0;
    transform: translateY(20px);
    display: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-grid.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 24px;
    border-bottom: 1px dashed rgba(197, 168, 128, 0.2);
    transition: var(--transition-smooth);
}

.menu-item:hover {
    border-bottom-color: var(--clr-primary);
}

.menu-item-info {
    max-width: 80%;
}

.menu-item-info h4 {
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 6px;
    transition: var(--transition-fast);
}

.menu-item:hover .menu-item-info h4 {
    color: var(--clr-primary);
}

.menu-item-info p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.menu-item-price {
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-primary);
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 120px 0;
    background-color: var(--clr-surface);
    border-bottom: 1px solid var(--clr-border);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border: 1px solid var(--clr-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 10, 9, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay span {
    font-family: var(--ff-heading);
    color: var(--clr-primary);
    font-size: 1.2rem;
    font-style: italic;
    border-bottom: 1px solid var(--clr-primary);
    padding-bottom: 4px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* --- Contact Section --- */
.contact-section {
    padding: 120px 0;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-desc {
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    color: var(--clr-primary);
    background-color: rgba(197, 168, 128, 0.05);
    border: 1px solid var(--clr-border);
    padding: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text h4 {
    font-family: var(--ff-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 4px;
}

.info-text p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* Interactive Form */
.contact-form-box {
    background-color: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-form-box h3 {
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 16px;
    color: var(--clr-text-light);
    font-family: var(--ff-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--clr-primary);
    outline: none;
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.05);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-group textarea ~ label {
    top: 24px;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 0.8rem;
    color: var(--clr-primary);
    background-color: var(--clr-surface);
    padding: 0 8px;
    transform: translateY(-50%) translateX(4px);
}

.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 0.8rem;
    color: var(--clr-primary);
    background-color: var(--clr-surface);
    padding: 0 8px;
    transform: translateY(-50%) translateX(4px);
}

.form-status {
    margin-top: 20px;
    font-size: 0.95rem;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    display: none;
}

.form-status.success {
    display: block;
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.form-status.error {
    display: block;
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-form-box {
        padding: 40px 30px;
    }
}

/* --- Footer --- */
.footer {
    background-color: #080605;
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--clr-border);
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 24px;
}

.footer-desc {
    color: var(--clr-text-muted);
    max-width: 500px;
    margin: 0 auto 32px auto;
    font-size: 0.95rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    color: var(--clr-text-muted);
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--clr-primary);
    border-color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.1);
}

.footer-divider {
    height: 1px;
    background-color: var(--clr-border);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.copyright {
    color: rgba(168, 162, 158, 0.5);
    font-size: 0.85rem;
}

/* --- Lightbox Modal for Gallery --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(12, 10, 9, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 70vh;
    border-radius: 8px;
    border: 2px solid var(--clr-primary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.4s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--clr-primary);
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    font-style: italic;
    padding: 20px 0;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: var(--clr-text-muted);
    font-size: 40px;
    font-weight: bold;
    transition: var(--transition-fast);
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--clr-primary);
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
    }
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 30px;
    }
}

/* --- Scroll Reveal Animations --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Entry Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1.2s 0.3s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

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

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