@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300..700&display=swap');

*{
  font-family: "Signika Negative", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Poppins', sans-serif; */
    font-family: "Signika Negative", serif;
    background: #f8f9f5; /* Soft off-white for fresh premium feel */
    color: #333;
    overflow-x: hidden;
    min-height: 100vh;
}

#background-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}

/* Header - Clean, Minimal, Premium */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px; /* Reduced padding for less height */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: transparent; /* Fully transparent initially */
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 15px 60px; /* Even smaller on scroll */
    background: rgba(248, 249, 245, 0.85); /* Subtle frosted only on scroll */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

/* Logo in header */
.logo-img {
    height: 70px; /* Smaller for balanced header */
    transition: all 0.3s;
}

header.scrolled .logo-img {
    height: 60px; /* Gently shrink on scroll */
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Nav links */
/* nav ul li a {
    color: #f8f9f5;
    transition: color 0.3s;
}

header.scrolled nav ul li a {
    color: #5d6d2a;
}

nav ul li a:hover {
    color: #c9a227;
}

nav ul li a::after {
    background: #c9a227;
} */
/* Nav links */
/* nav ul li a {
    color: #f8f9f5;
    transition: color 0.3s;
}

header.scrolled nav ul li a {
    color: #5d6d2a; 
} */

nav ul li a:hover {
    color: #c9a227;
}

nav ul li a::after {
    background: #c9a227;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

nav ul li a {
    color: #5d6d2a;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a227;
    transition: width 0.4s;
}

nav ul li a:hover {
    color: #c9a227;
}

nav ul li a:hover::after {
    width: 100%;
} 

/* Hero / Main */
main {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-logo {
    width: 380px;
    opacity: 0;
    animation: fadeInUp 1.2s forwards 0.5s;
}

.hero-title {
    /* font-family: 'Playfair Display', serif; */
    font-family: "Signika Negative", serif;
    font-size: 52px;
    color: #5d6d2a;
    margin: 30px 0 10px;
    opacity: 0;
    animation: fadeInUp 1.2s forwards 1s;
    text-shadow: 0 2px 10px rgba(201,162,39,0.1);
}

.hero-subtitle {
    font-size: 24px;
    color: #7a8b49;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 1.2s forwards 1.3s;
    letter-spacing: 2px;
    font-weight: 300;
}

/* .redirect-btn {
    background: linear-gradient(135deg, #c9a227, #a67c00);
    color: white;
    padding: 18px 50px;
    font-size: 19px;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(201,162,39,0.3);
    transition: all 0.4s;
    opacity: 0;
    animation: fadeInUp 1.2s forwards 1.6s;
}

.redirect-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(201,162,39,0.4);
} */

.redirect-btn {
    position: relative;
    background: linear-gradient(135deg, #c9a227, #a67c00);
    color: white;
    padding: 20px 56px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1.2s forwards 1.6s;
    z-index: 1;
}

.redirect-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.redirect-btn:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.6);
}

.redirect-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Inner shine effect on hover */
.redirect-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-50%) rotate(30deg);
    transition: transform 0.8s;
    pointer-events: none;
}

.redirect-btn:hover::after {
    transform: translateX(100%) translateY(-50%) rotate(30deg);
}
/* About & Contact Pages */
section {
    max-width: 900px;
    margin: 160px auto 100px;
    padding: 0 40px;
    text-align: center;
    line-height: 1.8;
    font-size: 18px;
}

section h1 {
    /* font-family: 'Playfair Display', serif; */
    font-family: "Signika Negative", serif;
    font-size: 48px;
    color: #5d6d2a;
    margin-bottom: 40px;
}

form {
    background: rgba(255,255,255,0.6);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 60px auto;
}

input, textarea {
    width: 100%;
    padding: 18px;
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 17px;
    background: white;
}

textarea { height: 180px; resize: vertical; }

form button {
    background: linear-gradient(135deg, #c9a227, #a67c00);
    color: white;
    padding: 18px 50px;
    font-size: 19px;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 10px 30px rgba(201,162,39,0.3);
    transition: all 0.4s;
}

form button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(201,162,39,0.4);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    color: #777;
    font-size: 15px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ====================== MOBILE RESPONSIVE NAV ====================== */

/* Hamburger Icon */
.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #5d6d2a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

header.scrolled .hamburger span {
    background: #5d6d2a; /* Keep visible on scrolled header */
}

/* Active state - turns into X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

/* Nav menu mobile styles */
.nav-menu {
    transition: transform 0.4s ease;
}

.nav-menu ul {
    transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(248, 249, 245, 0.98);
        backdrop-filter: blur(20px);
        padding: 120px 40px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-menu ul li a {
        font-size: 22px;
        color: #5d6d2a;
    }
    
    .nav-menu ul li a:hover {
        color: #c9a227;
    }
    
    header {
        padding: 20px 30px; /* Less side padding on mobile */
    }
    
    header.scrolled {
        padding: 15px 30px;
    }
    
    .hero-logo {
        width: 300px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    /* .redirect-btn {
        padding: 16px 40px;
        font-size: 18px;
    } */
    .redirect-btn {
        padding: 18px 48px;
        font-size: 19px;
        letter-spacing: 2.5px;
    }
}

/* About Page Specific Styles */
.about-hero {
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-hero h1 {
    font-family: "Signika Negative", serif;
    font-size: 48px;
    color: #5d6d2a;
    margin: 20px 0;
}

.lead-text {
    font-size: 22px;
    color: #7a8b49;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
    line-height: 1.8;
    font-size: 18px;
    color: #444;
}

.about-content h2 {
    font-family: "Signika Negative", serif;
    font-size: 38px;
    color: #5d6d2a;
    margin-bottom: 30px;
    position: relative;
}

.about-content h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #c9a227;
    display: block;
    margin: 20px auto;
}

.bamboo-list {
    text-align: left;
    max-width: 700px;
    margin: 30px auto;
    padding-left: 20px;
}

.bamboo-list li {
    margin: 12px 0;
    font-size: 18px;
}

blockquote {
    font-size: 24px;
    color: #5d6d2a;
    font-style: italic;
    margin: 50px auto;
    padding: 20px 40px;
    max-width: 800px;
    border-left: 4px solid #c9a227;
    background: rgba(201, 162, 39, 0.05);
}

.final-quote {
    font-size: 28px;
    background: none;
    border: none;
    padding: 0;
}

.vision {
    background: rgba(248, 249, 245, 0.6);
    padding: 80px 40px;
    border-radius: 20px;
    margin: 100px auto;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .about-hero h1 { font-size: 38px; }
    .lead-text { font-size: 19px; }
    .about-content h2 { font-size: 32px; }
    blockquote { font-size: 20px; padding: 20px; }
    .final-quote { font-size: 24px; }
}

/* ==== FINAL STICKY FOOTER FIX - ALWAYS AT BOTTOM ==== */
html {
    height: 100%;
}

body {
    min-height: 100vh;
    min-height: 100dvh; /* Better support for mobile dynamic viewports */
    display: flex;
    flex-direction: column;
    margin: 0;
    background: #f8f9f5;
    font-family: "Signika Negative", serif;
    color: #333;
    overflow-x: hidden;
}

main {
    flex: 1; /* This pushes the footer down perfectly */
}

footer {
    flex-shrink: 0;
    width: 100%;
    background: rgba(248, 249, 245, 0.95);
    backdrop-filter: blur(15px);
    padding: 50px 20px;
    text-align: center;
    color: #5d6d2a;
    font-size: 16px;
    border-top: 2px solid rgba(201, 162, 39, 0.3);
}

/* ====================== CONTACT PAGE STYLES ====================== */

.contact-page {
    padding-top: 120px;
    min-height: calc(100vh - 200px);
}

.contact-hero {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 48px;
    color: #5d6d2a;
    margin-bottom: 20px;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

#contact-form {
    background: rgba(255, 255, 255, 0.75);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 17px;
    background: white;
    transition: border 0.3s;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #c9a227;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

#contact-form textarea {
    height: 180px;
    resize: vertical;
}

.submit-btn {
    position: relative;
    background: linear-gradient(135deg, #c9a227, #a67c00);
    color: white;
    padding: 18px 50px;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.6);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.form-message {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    background: rgba(93, 109, 42, 0.1);
    border-radius: 15px;
    border: 2px solid #5d6d2a;
}

.contact-info {
    text-align: center;
    margin-top: 60px;
    font-size: 18px;
    color: #555;
}

.contact-info a {
    color: #c9a227;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-hero h1 { font-size: 38px; }
    .lead-text { font-size: 19px; }
    #contact-form { padding: 40px 30px; }
    .submit-btn { padding: 18px 40px; font-size: 18px; }
}