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

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #222222;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #222222;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #222222;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: #cce5e7;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #222222;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    top: 100%;
    left: 0;
    padding: 1rem 0;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    color: #222222;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    margin-top: 40px;
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('./images/hero-bg.jpg') center/cover;
    opacity: .9;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #cce5e7;
    color: #222222;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #b8d8da;
    transform: translateY(-2px);
}

/* Featured Destinations */
.featured-destinations {
    padding: 6rem 0;
}

.featured-destinations h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.destination-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

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

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

.destination-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    margin-bottom: 1rem;
    color: #222222;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #cce5e7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #222222;
}

/* Pull Quote */
.pull-quote {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.pull-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    color: #222222;
    max-width: 800px;
    margin: 0 auto;
}

.pull-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #666;
    font-style: normal;
}

/* Trip Planning */
.trip-planning {
    padding: 6rem 0;
}

.trip-planning h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.planning-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.planning-card:hover {
    transform: translateY(-3px);
}

.planning-card h3 {
    color: #222222;
    margin-bottom: 1rem;
}

.planning-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.card-link {
    color: #cce5e7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #222222;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 3rem 0 1rem;
    border-top: 1px solid #e8e8e8;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #222222;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #222222;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    color: #666;
}

/* Guide Page Styles */
.guide-hero {
    height: 60vh;
    position: relative;
    margin-top: 80px;
}

.guide-hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.guide-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.guide-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.guide-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Guide Layout */
.guide-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.guide-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.guide-sidebar h4 {
    margin-bottom: 1rem;
    color: #222222;
    font-size: 1.1rem;
}

.guide-sidebar ul {
    list-style: none;
}

.guide-sidebar ul li {
    margin-bottom: 0.5rem;
}

.guide-sidebar a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.guide-sidebar a:hover {
    color: #cce5e7;
}

.guide-content {
    max-width: none;
}

.guide-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.guide-section:last-child {
    border-bottom: none;
}

.guide-section h2 {
    margin-bottom: 2rem;
    color: #222222;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #cce5e7;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-card h4 {
    margin-bottom: 1rem;
    color: #222222;
}

.info-card.rose {
    border-left-color: #f9e5dc;
}

.info-card.sage {
    border-left-color: #dbe8d1;
}

.highlight-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #cce5e7;
}

.itinerary-day {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.itinerary-day h4 {
    color: #cce5e7;
    margin-bottom: 1rem;
}

.itinerary-day h5 {
    color: #222222;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid #e8e8e8;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-menu .nav-link {
        padding: 1rem;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f8f9fa;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Dropdown adjustments for mobile */
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background-color: #f8f9fa;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid #e8e8e8;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guide-sidebar {
        position: static;
        order: -1;
    }
    
    .guide-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .guide-hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo h1 {
        font-size: 1.5rem;
    }
}
