/* ===== Custom Styles for Touch Of French ===== */

/* --- Base & Typography --- */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
}

/* --- Gold Button --- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #D4B878 0%, #C9A84C 50%, #B8943F 100%);
    color: #1B4332;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.45);
    color: #163829;
}

.btn-gold:active {
    transform: translateY(0);
}

/* --- Outline Light Button --- */
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #FDFCFA;
    border: 1.5px solid rgba(253, 252, 250, 0.4);
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-outline-light:hover {
    background: rgba(253, 252, 250, 0.1);
    border-color: rgba(253, 252, 250, 0.7);
    color: #FDFCFA;
    transform: translateY(-2px);
}

/* --- Input Fields --- */
.input-field {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #C5D5C8;
    border-radius: 0;
    padding: 0.75rem 0;
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 0.95rem;
    color: #1B4332;
    transition: border-color 0.3s ease;
    outline: none;
}

.input-field::placeholder {
    color: #9BB89E;
}

.input-field:focus {
    border-bottom-color: #2D6A4F;
}

.input-field option {
    background: #F5F5DC;
    color: #1B4332;
}

/* --- Navigation --- */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2D6A4F;
    transition: width 0.3s ease;
}

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

/* --- Hero Decorations --- */
.hero-deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

.hero-deco-1 {
    width: 600px;
    height: 600px;
    background: #F5F5DC;
    top: -200px;
    right: -150px;
}

.hero-deco-2 {
    width: 400px;
    height: 400px;
    background: #D4B878;
    bottom: -100px;
    left: -100px;
}

.hero-deco-3 {
    width: 200px;
    height: 200px;
    background: #F5F5DC;
    top: 40%;
    left: 10%;
}

.hero-deco-4 {
    width: 150px;
    height: 150px;
    background: #D4B878;
    bottom: 20%;
    right: 15%;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* --- Service Cards --- */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2D6A4F, #4D8254);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Hero Animations --- */
.hero-subtitle {
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.hero-headline {
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

.hero-tagline {
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.hero-cta {
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

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

/* --- Mobile Menu --- */
.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-size: 1.1rem;
}

/* --- Navbar Scrolled State --- */
.navbar-scrolled {
    background: rgba(253, 252, 250, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(27, 67, 50, 0.08);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-deco-1 {
        width: 300px;
        height: 300px;
    }
    
    .hero-deco-2 {
        width: 200px;
        height: 200px;
    }
    
    .hero-deco-3,
    .hero-deco-4 {
        display: none;
    }
}

@media (max-width: 640px) {
    .service-card {
        padding: 1.5rem;
    }
    
    .btn-gold,
    .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
}
