/* === COLOR PALETTE === */
:root {
    --primary-brown: #8B4513;
    --secondary-brown: #A0522D;
    --burnt-orange: #D2691E;
    --warm-orange: #FF8C00;
    --cream: #FAEBD7;
    --light-cream: #FFF8DC;
    --forest-green: #2D5016;
    --sage-green: #4A7C59;
    --gold: #DAA520;
    --dark-text: #3E2723;
    --light-text: #5D4037;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-brown);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === HEADER #1 - INITIAL HEADER (Transparent Over Hero) === */
.navbar-initial {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;  /* Completely transparent! */
    z-index: 100;
    padding: 20px 0;
}

.navbar-initial .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;  /* Changed from center to flex-start */
    padding-top: 20px;  /* Add padding for spacing */
}

.navbar-initial .logo {
    padding-top: 0;  /* Logo stays at normal position */
}

.navbar-initial .logo img {
    height: 180px;
    width: auto;
    filter: brightness(0) invert(1) 
            drop-shadow(3px 3px 12px rgba(0, 0, 0, 0.8))
            drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.6))
            drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.4));  /* Extra strong multi-layer shadow for maximum visibility */
}

.navbar-initial .nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    padding-top: 30px;  /* Move links up relative to logo */
}

.navbar-initial .nav-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: white;  /* White text over hero image */
    position: relative;
    padding: 5px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);  /* Shadow for readability */
    letter-spacing: 0.5px;
}

.navbar-initial .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navbar-initial .nav-menu a:hover {
    color: var(--gold);
}

.navbar-initial .nav-menu a:hover::after {
    width: 100%;
}

/* === HEADER #2 - STICKY HEADER (With Background - Appears on Scroll) === */
.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 235, 215, 0.98);  /* Background only on sticky! */
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(61, 39, 35, 0.2);
    z-index: 1000;
    padding: 5px 0;  /* Reduced from 10px for more compact header */
    border-bottom: 2px solid var(--gold);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.navbar-sticky.show {
    transform: translateY(0);
    opacity: 1;
}

.container-sticky {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Navigation - Sticky Header */
.nav-left {
    display: flex;
    list-style: none;
    gap: 35px;
    flex: 1;
    justify-content: flex-start;
}

/* Center Logo - Sticky Header */
.logo-center {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;  /* Reduced from 40px */
}

.logo-center img {
    height: 80px;  /* Reduced from 120px for more compact header */
    width: auto;
}

/* Right Navigation - Sticky Header */
.nav-right {
    display: flex;
    list-style: none;
    gap: 35px;
    flex: 1;
    justify-content: flex-end;
}

.nav-left a,
.nav-right a {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-brown);
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-left a::after,
.nav-right a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burnt-orange);
    transition: width 0.3s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 100%;
}

/* === HAMBURGER MENU === */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

/* Hamburger for initial header - white color */
.navbar-initial .hamburger {
    padding-top: 30px;  /* Align with raised nav links */
}

.navbar-initial .hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hamburger for sticky header - brown color */
.navbar-sticky .hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-brown);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-sticky {
    position: absolute;
    right: 40px;
}

/* === HERO CAROUSEL === */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(61, 39, 35, 0.85), transparent);
    padding: 80px 40px 60px;
    text-align: center;
}

.hero-title {
    font-size: 72px;
    color: var(--cream);
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--light-cream);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-style: italic;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.dot.active,
.dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

/* === SECTION STYLING === */
.section-header {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 10px;  /* Reduced from 40px to 10px */
}

.section-icon {
    width: 240px;
    height: auto;
    margin: 0 auto 10px;
    opacity: 0.8;
}

.section-header h2 {
    font-size: 56px;
    color: var(--primary-brown);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--light-text);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* === BLOG SECTION === */
.blog-section {
    padding: 80px 0 40px;  /* Reduced bottom padding from 100px to 40px */
    background: linear-gradient(to bottom, var(--light-cream), var(--cream));
}

.featured-post {
    margin-bottom: 80px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(61, 39, 35, 0.15);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(61, 39, 35, 0.25);
}

.featured-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--burnt-orange);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.featured-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.post-category {
    background: var(--forest-green);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.post-date {
    color: var(--light-text);
    display: flex;
    align-items: center;
}

.featured-content h3 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-brown);
    line-height: 1.3;
}

.featured-content p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.8;
}

.read-more {
    color: var(--burnt-orange);
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
}

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

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(61, 39, 35, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(61, 39, 35, 0.2);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-content h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-brown);
    line-height: 1.4;
}

.blog-content p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.6;
}

/* === PLACES SECTION === */
.places-section {
    padding: 40px 0 100px;  /* Reduced top padding from 80px to 40px */
    background: var(--cream);
}

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

.place-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(61, 39, 35, 0.15);
    transition: all 0.4s ease;
}

.place-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(61, 39, 35, 0.3);
}

.place-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.place-card:hover .place-image img {
    transform: scale(1.15);
}

.place-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(61, 39, 35, 0.9), transparent);
    padding: 40px 30px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.place-overlay h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 10px;
}

.place-overlay p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* === LINKS SECTION === */
.links-section {
    padding: 80px 0 100px;
    background: linear-gradient(to bottom, var(--cream), var(--light-cream));
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.link-category {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 8px 35px rgba(61, 39, 35, 0.12);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.category-header img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(61, 39, 35, 0.15);
}

.category-header h3 {
    font-size: 32px;
    color: var(--primary-brown);
}

.link-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.link-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-cream);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.link-item:hover {
    background: white;
    border-color: var(--burnt-orange);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(61, 39, 35, 0.1);
}

.link-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.link-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-brown);
}

.link-content p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.5;
}

/* === ABOUT SECTION === */
.about-section {
    padding: 80px 0 100px;
    background: var(--light-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(61, 39, 35, 0.12);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(61, 39, 35, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h3 {
    font-size: 38px;
    color: var(--primary-brown);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--burnt-orange);
}

.about-signature p {
    margin-bottom: 5px;
    font-style: italic;
}

.signature-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px !important;
    color: var(--burnt-orange) !important;
    font-weight: 600;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 80px 0 100px;
    background: linear-gradient(to bottom, var(--light-cream), var(--cream));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-brown);
}

.contact-info p {
    font-size: 17px;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 35px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(61, 39, 35, 0.08);
}

.social-link:hover {
    border-color: var(--burnt-orange);
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(61, 39, 35, 0.15);
}

.social-link img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.social-link span {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-brown);
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 35px rgba(61, 39, 35, 0.12);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-brown);
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid var(--cream);
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: var(--dark-text);
    background: var(--light-cream);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burnt-orange);
    background: white;
}

.submit-btn {
    padding: 18px 40px;
    background: var(--burnt-orange);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(210, 105, 30, 0.3);
}

.submit-btn:hover {
    background: var(--primary-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.4);
}

/* === FOOTER === */
.footer {
    background: var(--primary-brown);
    color: var(--cream);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(218, 165, 32, 0.3);
}

.footer-logo img {
    height: 240px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    font-style: italic;
    font-size: 16px;
    color: rgba(250, 235, 215, 0.8);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--cream);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(250, 235, 215, 0.6);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .container,
    .container-sticky {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-header h2 {
        font-size: 48px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-left,
    .nav-right {
        gap: 25px;
    }

    .nav-left a,
    .nav-right a {
        font-size: 14px;
    }

    .logo-center img {
        height: 100px;
    }
}

@media (max-width: 968px) {
    /* Initial Header Mobile */
    .navbar-initial .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(139, 69, 19, 0.98);  /* Brown background for mobile menu */
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding: 100px 0 40px;
        gap: 25px;
        justify-content: flex-start;
    }
    
    .navbar-initial .nav-menu.active {
        left: 0;
    }

    .navbar-initial .nav-menu a {
        color: white;
        font-size: 24px;
    }
    
    /* Sticky Header Mobile */
    .navbar-sticky .container-sticky {
        flex-wrap: wrap;
        position: relative;
    }

    .navbar-sticky .logo-center {
        order: 1;
        padding: 0;
    }

    .navbar-sticky .logo-center img {
        height: 80px;
    }

    .nav-left,
    .nav-right {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background: var(--cream);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 30px 0;
        gap: 20px;
        z-index: 999;
    }

    .nav-left.active,
    .nav-right.active {
        left: 0;
    }

    .nav-right.active {
        top: 320px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .featured-link {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        padding: 40px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .places-grid {
        grid-template-columns: 1fr;
    }
    
    .link-list {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .container,
    .container-sticky {
        padding: 0 20px;
    }
    
    .navbar-initial {
        padding: 15px 0;
    }

    .navbar-initial .logo img {
        height: 120px;
    }

    .hero-carousel {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .featured-content h3 {
        font-size: 28px;
    }
    
    .link-category {
        padding: 30px 20px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .hamburger-sticky {
        right: 20px;
    }
}
