@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f8fafc;
    --white: #ffffff;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--background-light);
    font-size: 16px;
}

header {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 0.75rem 2rem;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

header a img {
    max-width: 120px;
    height: auto;
    transition: transform 0.2s ease;
    background-color: var(--white);
    border-radius: 6px;
    padding: 6px;
    box-shadow: var(--shadow-sm);
}

header a img:hover {
    transform: scale(1.05);
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
    background-color: var(--background-light);
}

nav ul li a.active {
    color: var(--primary-color);
    background-color: var(--background-light);
}

.hero {
    position: relative;
    text-align: center;
    color: white;
    overflow: hidden;
    border-radius: 1rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: var(--shadow-xl);
}

.hero img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 1rem;
    max-width: 600px;
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.latest-posts {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Featured Post Section */
.featured-post {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.featured-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.featured-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--background-light);
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.latest-posts h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3.5rem;
    letter-spacing: -0.5px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.post-grid article {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.post-grid article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.post-grid article img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background-color: var(--background-light);
}

.post-card-content {
    padding: 2rem;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.post-badge {
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.post-grid article h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.post-grid article p {
    color: var(--text-light);
    margin: 0 0 1.5rem 0;
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
}

.post-grid article a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.post-grid article a:hover {
    background: var(--secondary-color);
    transform: translateX(2px);
}

.post-grid article a::after {
    content: '→';
    transition: transform 0.2s ease;
}

.post-grid article a:hover::after {
    transform: translateX(2px);
}

footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: var(--white);
    text-align: center;
    padding: 3.5rem 2rem 2.5rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Add these styles to your existing styles.css */
.carousel {
    position: relative;
    max-width: 80%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    min-width: 100%;
    box-sizing: border-box;
}

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
    header {
        padding: 0.5rem 0.75rem;
    }
    
    .header-container {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
    }
    
    header a img {
        max-width: 60px;
        padding: 3px;
        border-radius: 4px;
    }
    
    nav ul {
        flex-direction: row;
        gap: 0.2rem;
        flex-wrap: nowrap;
        justify-content: flex-end;
        flex: 1;
    }
    
    nav ul li a {
        display: inline-block;
        width: auto;
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
        white-space: nowrap;
    }
    
    .hero {
        margin: 1rem;
        border-radius: 0.5rem;
    }
    
    .hero img {
        height: 300px;
    }
    
    .hero-text {
        padding: 2rem 1.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.75rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .latest-posts {
        padding: 2rem 1rem;
    }
    
    .latest-posts h2 {
        font-size: 2rem;
    }
    
    .post-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Carousel */
    .carousel {
        max-width: 95%;
    }
    
    button.prev, button.next {
        padding: 8px;
        font-size: 12px;
    }
    
    /* About Page Specific */
    .about-me img {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
        width: 150px;
        height: 150px;
    }
    
    .about-me {
        padding: 15px 10px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    /* Extra small screens */
    header {
        padding: 0.4rem 0.5rem;
    }
    
    header a img {
        max-width: 50px;
        padding: 2px;
    }
    
    nav ul {
        gap: 0.15rem;
    }
    
    nav ul li a {
        font-size: 0.7rem;
        padding: 0.35rem 0.4rem;
    }
    
    .hero-text h2 {
        font-size: 1.2em;
    }
    
    .hero-text p {
        font-size: 0.8em;
    }
    
    .post-grid article h3 {
        font-size: 1.1em;
        padding: 8px;
    }
    
    .post-grid article p {
        font-size: 0.9em;
        padding: 8px;
    }
    
    .latest-posts {
        padding: 10px 5px;
    }
    
    /* About Page Mobile Styles */
    .about-hero {
        padding: 2rem 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h1 {
        font-size: 2rem;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
    
    .about-image img {
        width: 200px;
        height: 200px;
    }
    
    .about-details {
        padding: 2rem 1rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
    }
    
    .join-adventure {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    /* Contact Page Mobile Styles */
    .contact-hero {
        padding: 2rem 1rem;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-intro {
        font-size: 1.1rem;
    }
    
    .contact-content {
        padding: 2rem 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .social-button {
        justify-content: center;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta h2 {
        font-size: 1.5rem;
    }
    
    /* Blog Post Enhancement Mobile Styles */
    .download-itinerary {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .download-itinerary h3 {
        font-size: 1.25rem;
    }
    
    .planning-resources {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .resource-card {
        padding: 1.25rem;
    }
    
    /* Weather Widget Mobile Styles */
    .weather-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .weather-widget {
        padding: 1.25rem;
    }
    
    .weather-temp {
        font-size: 2rem;
    }
    
    .weather-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Featured Post Mobile Styles */
    .featured-post {
        padding: 2rem 1rem;
    }
    
    .featured-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .featured-content h2 {
        font-size: 2rem;
    }
    
    .featured-highlights {
        justify-content: center;
    }
    
    .featured-image img {
        height: 250px;
    }
    
    /* Gallery Mobile Styles */
    .gallery-hero {
        padding: 2rem 1rem;
    }
    
    .gallery-hero h1 {
        font-size: 2rem;
    }
    
    .gallery-intro {
        font-size: 1.1rem;
    }
    
    .gallery-content {
        padding: 2rem 1rem;
    }
    
    .simple-gallery h2 {
        font-size: 2rem;
    }
    
    .photo-masonry {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .photo-card img {
        height: 180px;
    }
    
    .photo-caption {
        padding: 1rem;
    }
    
    .gallery-cta {
        padding: 2rem 1.5rem;
    }

/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gallery-intro {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-content {
    padding: 4rem 2rem;
}

/* Simple Gallery Styles */
.simple-gallery {
    margin-bottom: 4rem;
}

.simple-gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.simple-gallery > p {
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.photo-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.photo-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.photo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.photo-caption {
    padding: 1.25rem;
}

.photo-caption h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.photo-caption p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}



.gallery-cta {
    text-align: center;
    background: var(--background-light);
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid var(--border-light);
    margin-top: 3rem;
}

.gallery-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.gallery-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}


    
    /* Blog Post Mobile Styles */
    .blog-post {
        padding: 15px 10px;
    }
    
    .post-hero-image {
        height: 200px;
        margin-bottom: 20px;
    }
    
    .post-header h1 {
        font-size: 1.5em;
    }
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
    padding: 4rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.about-details {
    padding: 4rem 2rem;
}

.about-story {
    margin-bottom: 4rem;
}

.about-story h2,
.travel-highlights h2,
.travel-philosophy h2,
.join-adventure h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-story p,
.travel-philosophy p,
.join-adventure p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.travel-highlights {
    margin-bottom: 4rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.highlight-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.highlight-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.travel-philosophy {
    margin-bottom: 4rem;
}

.join-adventure {
    text-align: center;
    background: var(--background-light);
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid var(--border-light);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.cta-button.primary {
    background: var(--primary-color);
    color: var(--white);
}

.cta-button.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-intro {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    padding: 4rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.social-links h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.2s ease;
}

.social-button img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.social-button:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-form-container {
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    width: 100%;
    max-width: 500px;
}

.contact-form-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.button-icon {
    font-size: 1.1rem;
}

.contact-cta {
    text-align: center;
    background: var(--background-light);
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid var(--border-light);
}

.contact-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Form Animation and Enhancement */
.form-group {
    position: relative;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #10b981;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-button:disabled:hover {
    transform: none;
    background: var(--primary-color);
}

/* Contact method hover effects */
.contact-method {
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.contact-method:hover {
    background: var(--background-light);
    transform: translateX(4px);
}

.contact-method:hover .contact-icon {
    background: var(--primary-color);
    color: var(--white);
}

/* Form focus animations */
@keyframes focusGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    animation: focusGlow 0.6s ease-out;
}

/* Weather Widget Styles */
.weather-widget {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
    max-width: 280px;
    margin: 0 auto;
}

.weather-widget:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.weather-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.weather-header h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.weather-header img {
    width: 40px;
    height: 40px;
}

.weather-icon {
    font-size: 1.5rem;
}

.weather-temp {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.weather-desc {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    text-transform: capitalize;
    font-size: 0.85rem;
}

.weather-details {
    display: flex;
    justify-content: space-around;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.weather-error {
    background: var(--background-light);
    border-color: var(--border-light);
}

.weather-message {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
}

/* Weather Widget Container */
.weather-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.weather-section {
    margin: 3rem auto;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 1rem;
    max-width: 1200px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.weather-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.3px;
}

.weather-container {
    display: flex;
    justify-content: center;
}

/* Blog Inline Images */
.blog-image-section {
    margin: 2rem 0;
    text-align: center;
}

.blog-inline-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
}

.image-caption {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Analytics Setup Page Styles */
.analytics-setup {
    padding: 4rem 2rem;
}

.analytics-container {
    max-width: 1000px;
    margin: 0 auto;
}

.analytics-setup h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.analytics-setup > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.setup-steps {
    margin-bottom: 4rem;
}

.step-card {
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-content ul {
    color: var(--text-light);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.step-content li {
    margin-bottom: 0.5rem;
}

.measurement-id-example {
    background: var(--background-light);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
    font-weight: 600;
}

.id-input-section {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 0.5rem;
    border: 1px solid var(--border-light);
}

.id-input-section label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.measurement-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
}

.measurement-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.setup-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.setup-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.analytics-benefits h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Blog Post Enhancement Styles */
.download-itinerary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f59e0b 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
    text-align: center;
}

.download-itinerary h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.download-itinerary p {
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
}

.download-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--background-light);
}

.download-button small {
    font-size: 0.8rem;
    opacity: 0.7;
    font-weight: 400;
}

.planning-resources {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 1rem;
    margin: 3rem 0;
    border: 1px solid var(--border-light);
}

.planning-resources h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.planning-resources > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.resource-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.resource-card h4 {
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
}

.resource-card p {
    color: var(--text-light);
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.resource-link:hover {
    color: var(--secondary-color);
}

.resource-link::before {
    content: '📥';
    font-size: 1rem;
}

/* Destinations Page Specific Styles */
.destinations {
    padding: 20px;
}

.destinations h2 {
    text-align: center;
    color: #ff6f61;
    margin-bottom: 30px;
}

/* Blog Post Specific Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.post-header {
    text-align: center;
    margin-bottom: 30px;
}

.post-header h1 {
    color: #ff6f61;
    margin-bottom: 10px;
}

.post-meta {
    color: #666;
    font-style: italic;
}

.post-hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 30px;
    background-color: var(--background-light);
}

.post-content {
    line-height: 1.8;
}

.post-content h2 {
    color: #ff6f61;
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-content h3 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 10px;
}

.post-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-navigation {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.back-link {
    color: #ff6f61;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #ff8033;
}

/* Photo Manager Styles */
.photo-manager {
    padding: 4rem 2rem;
    background: var(--background-light);
}

.photo-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tool-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.tool-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.folder-suggestions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.folder-suggestions button,
.gallery-generator button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.folder-suggestions button:hover,
.gallery-generator button:hover {
    background: var(--primary-dark);
}

.gallery-generator {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-generator label {
    font-weight: 600;
    color: var(--text-dark);
}

.gallery-generator input,
.gallery-generator textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    font-family: inherit;
}

.gallery-generator textarea {
    resize: vertical;
    font-family: monospace;
}

#gallery-output {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 0.5rem;
}

#gallery-code {
    width: 100%;
    font-family: monospace;
    font-size: 0.9rem;
}

/* Photo Gallery Styles for Blog Posts */
.photo-gallery-section {
    margin: 3rem 0;
}

.photo-gallery-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.gallery-photo {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    display: block;
    background-color: var(--background-light);
    border-radius: 0.5rem 0.5rem 0 0;
}

.photo-caption {
    padding: 1rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    text-transform: capitalize;
}

/* Current Photos Structure */
.current-photos {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.current-photos h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Responsive Design for Photo Manager */
@media (max-width: 768px) {
    .photo-tools {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-photo {
        max-height: 180px;
    }
}
/* Impro
ved Gallery Styles */
.photo-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.photo-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.photo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.photo-card .photo-caption {
    padding: 1rem;
}

.photo-card .photo-caption h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.photo-card .photo-caption p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
    max-width: 600px;
}

.lightbox-caption h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.lightbox-caption p {
    margin: 0;
    color: var(--text-light);
    font-size: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive Gallery */
@media (max-width: 768px) {
    .photo-masonry {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .photo-card img {
        height: 200px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
}

/* Email Subscription Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.modal-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #333;
}

#subscriptionForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#subscriptionForm input[type="email"] {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

#subscriptionForm input[type="email"]:focus {
    outline: none;
    border-color: #ff6f61;
}

.submit-button {
    background-color: #ff6f61;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #ff5545;
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

.privacy-note {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

.subscription-message {
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    margin-top: 15px;
}

.subscription-message.loading {
    background-color: #f0f0f0;
    color: #666;
}

.subscription-message.success {
    background-color: #d4edda;
    color: #155724;
}

.subscription-message.error {
    background-color: #f8d7da;
    color: #721c24;
}

/* Update download button to work as button element */
.download-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6f61 0%, #ff8a7a 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.3);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: inherit;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 97, 0.4);
}

.download-button span {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.download-button small {
    display: block;
    opacity: 0.9;
    font-size: 12px;
}

.resource-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
}

.resource-link:hover {
    background-color: #ff5545;
}

/* Responsive design for modal */
@media (max-width: 600px) {
    .modal-content {
        margin: 20% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 1.5em;
    }
}
