/* ===== CSS Variables ===== */
:root {
    /* Luxury Travel Color Palette */
    --background: hsl(40, 33%, 98%);
    --foreground: hsl(220, 25%, 10%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 25%, 10%);
    
    /* Ocean Teal - Primary Brand */
    --primary: hsl(185, 65%, 35%);
    --primary-foreground: hsl(0, 0%, 100%);
    
    /* Warm Sand */
    --secondary: hsl(35, 30%, 92%);
    --secondary-foreground: hsl(220, 25%, 15%);
    
    /* Muted Cream */
    --muted: hsl(40, 20%, 94%);
    --muted-foreground: hsl(220, 10%, 45%);
    
    /* Custom Luxury Colors */
    --ocean: hsl(185, 65%, 35%);
    --ocean-light: hsl(185, 60%, 55%);
    --ocean-dark: hsl(195, 70%, 25%);
    --sunset: hsl(32, 95%, 55%);
    --sunset-light: hsl(35, 100%, 70%);
    --sunset-dark: hsl(25, 90%, 45%);
    --sand: hsl(35, 30%, 92%);
    --sand-light: hsl(40, 33%, 97%);
    --sand-dark: hsl(30, 25%, 85%);
    --midnight: hsl(220, 35%, 12%);
    --midnight-light: hsl(220, 30%, 25%);
    --coral: hsl(12, 85%, 60%);
    
    /* Gradients */
    --gradient-sunset: linear-gradient(135deg, hsl(32, 95%, 55%) 0%, hsl(12, 85%, 60%) 50%, hsl(340, 70%, 55%) 100%);
    --gradient-ocean: linear-gradient(135deg, hsl(185, 65%, 35%) 0%, hsl(195, 70%, 45%) 100%);
    --gradient-hero: linear-gradient(180deg, hsla(220, 35%, 12%, 0) 0%, hsla(220, 35%, 12%, 0.4) 50%, hsla(220, 35%, 12%, 0.85) 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px -4px hsla(220, 25%, 10%, 0.08);
    --shadow-medium: 0 8px 30px -8px hsla(220, 25%, 10%, 0.12);
    --shadow-elevated: 0 16px 50px -12px hsla(220, 25%, 10%, 0.18);
    
    --radius: 0.75rem;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Utilities ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }

.italic { font-style: italic; }

.hidden { display: none !important; }

.ocean-text { color: var(--ocean); }
.sunset-text { color: var(--sunset); }
.sunset-light-text { color: var(--sunset-light); }
.coral-text { color: var(--coral); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2rem; font-size: 1rem; }

.btn-hero {
    background: var(--primary-foreground);
    color: var(--midnight);
}
.btn-hero:hover {
    background: var(--sunset-light);
    transform: translateY(-2px);
}

.btn-hero-outline {
    background: transparent;
    color: var(--primary-foreground);
    border: 2px solid hsla(0, 0%, 100%, 0.4);
}
.btn-hero-outline:hover {
    background: hsla(0, 0%, 100%, 0.1);
    border-color: hsla(0, 0%, 100%, 0.6);
}

.btn-ocean {
    background: var(--ocean);
    color: var(--primary-foreground);
}
.btn-ocean:hover {
    background: var(--ocean-dark);
}

.btn-sunset {
    background: var(--gradient-sunset);
    color: var(--primary-foreground);
}
.btn-sunset:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px -8px hsla(32, 95%, 55%, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 2px solid var(--sand-dark);
}
.btn-outline:hover {
    background: var(--sand);
    border-color: var(--ocean);
}

/* ===== Badge ===== */
.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    letter-spacing: 0.025em;
}

.badge-ocean {
    background: hsla(185, 65%, 35%, 0.1);
    color: var(--ocean);
}

.badge-ocean-dark {
    background: hsla(185, 65%, 35%, 0.2);
    color: var(--ocean-light);
}

.badge-sunset {
    background: hsla(32, 95%, 55%, 0.1);
    color: var(--sunset-dark);
}

.badge-coral {
    background: hsla(12, 85%, 60%, 0.1);
    color: var(--coral);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.25rem 0;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-bold {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-foreground);
    transition: color 0.3s;
}

.logo-italic {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 300;
    font-style: italic;
    color: var(--sunset-light);
    transition: color 0.3s;
}

.navbar.scrolled .logo-bold { color: var(--foreground); }
.navbar.scrolled .logo-italic { color: var(--ocean); }

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
}

.nav-link {
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: hsla(0, 0%, 100%, 0.8);
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sunset-light);
    transition: width 0.3s;
}

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--primary-foreground); }

.navbar.scrolled .nav-link { color: var(--muted-foreground); }
.navbar.scrolled .nav-link:hover { color: var(--foreground); }
.navbar.scrolled .nav-link::after { background: var(--ocean); }

.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.navbar.scrolled .nav-cta {
    background: var(--ocean);
    color: var(--primary-foreground);
}

.mobile-menu-toggle {
    display: flex;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--primary-foreground);
}

.navbar.scrolled .mobile-menu-toggle { color: var(--foreground); }

@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    padding-top: 5rem;
    background: hsla(0, 0%, 100%, 0.98);
    backdrop-filter: blur(20px);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
}

.mobile-nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--foreground);
    transition: color 0.3s;
}

.mobile-nav-link:hover { color: var(--ocean); }

.mobile-nav-cta { margin-top: 1.5rem; width: 100%; }

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
    overflow: hidden;
}

@media (min-width: 768px) { .hero { padding-bottom: 8rem; } }

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: hsla(0, 0%, 100%, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    color: hsla(0, 0%, 100%, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    color: var(--primary-foreground);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
    max-width: 36rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

@media (min-width: 768px) { .hero-description { font-size: 1.25rem; } }

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: hsla(0, 0%, 100%, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    box-shadow: var(--shadow-elevated);
    animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) { .floating-card { display: flex; } }

.floating-rating {
    top: 8rem;
    right: 2rem;
}

@media (min-width: 1024px) { .floating-rating { right: 5rem; } }

.floating-location {
    display: none;
    bottom: 10rem;
    left: 2rem;
}

@media (min-width: 1024px) { .floating-location { display: flex; left: 5rem; } }

.floating-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon svg { width: 1.25rem; height: 1.25rem; }

.sunset-bg {
    background: hsla(32, 95%, 55%, 0.2);
    color: var(--sunset);
}

.ocean-bg {
    background: hsla(185, 65%, 35%, 0.2);
    color: var(--ocean);
}

.floating-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.floating-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.icon-filled { fill: currentColor; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator span {
    color: hsla(0, 0%, 100%, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid hsla(0, 0%, 100%, 0.4);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: hsla(0, 0%, 100%, 0.6);
    border-radius: 50%;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

/* ===== Sections ===== */
.section {
    padding: 6rem 0;
}

@media (min-width: 768px) { .section { padding: 8rem 0; } }

.section-header {
    margin-bottom: 4rem;
}

.section-header-flex {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-header-flex {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--foreground);
    margin-top: 1rem;
}

.section-title.light { color: var(--sand-light); }

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 1rem auto 0;
}

.section-description.light { color: hsla(40, 33%, 97%, 0.7); }

/* ===== Categories Section ===== */
.categories-section {
    background: var(--sand-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

.category-card {
    position: relative;
    height: 20rem;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

@media (min-width: 768px) { .category-card { height: 24rem; } }

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

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

.category-overlay {
    position: absolute;
    inset: 0;
}

.ocean-overlay { background: linear-gradient(to top, hsla(185, 65%, 35%, 0.9), hsla(195, 70%, 25%, 0.8)); }
.sunset-overlay { background: linear-gradient(to top, hsla(32, 95%, 55%, 0.9), hsla(25, 90%, 45%, 0.8)); }
.midnight-overlay { background: linear-gradient(to top, hsla(220, 35%, 12%, 0.95), hsla(220, 35%, 12%, 0.8)); }
.coral-overlay { background: linear-gradient(to top, hsla(12, 85%, 60%, 0.95), hsla(12, 85%, 60%, 0.8)); }

.category-content {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-content > div:first-child { flex: 1; }

.category-info { display: flex; flex-direction: column; }

.category-posts {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 0.5rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-foreground);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) { .category-title { font-size: 2.5rem; } }

.category-description {
    color: hsla(0, 0%, 100%, 0.8);
    max-width: 20rem;
}

.category-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.category-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-foreground);
    transition: color 0.3s;
}

.category-card:hover .category-arrow {
    background: var(--primary-foreground);
}

.category-card:hover .category-arrow svg { color: var(--midnight); }

/* ===== Destinations Section ===== */
.destinations-section {
    background: var(--midnight);
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .destinations-grid { grid-template-columns: repeat(3, 1fr); }
}

.destination-card {
    position: relative;
    height: 450px;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

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

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

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--midnight) 0%, hsla(220, 35%, 12%, 0.4) 50%, transparent 100%);
}

.destination-content {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.destination-arrow {
    align-self: flex-end;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: hsla(40, 33%, 97%, 0.1);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.destination-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--sand-light);
}

.destination-card:hover .destination-arrow {
    background: var(--sunset);
    transform: scale(1.1);
}

.destination-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsla(40, 33%, 97%, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.destination-location svg { width: 1rem; height: 1rem; }

.destination-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--sand-light);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

@media (min-width: 768px) { .destination-title { font-size: 2.5rem; } }

.destination-card:hover .destination-title { color: var(--sunset-light); }

.destination-articles {
    font-size: 0.875rem;
    color: hsla(40, 33%, 97%, 0.6);
}

/* ===== Blog Section ===== */
.blog-section {
    background: var(--background);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

.blog-featured {
    cursor: pointer;
}

@media (min-width: 1024px) { .blog-featured { grid-row: span 2; } }

.blog-featured-image {
    position: relative;
    height: 20rem;
    border-radius: 1rem;
    overflow: hidden;
}

@media (min-width: 1024px) { .blog-featured-image { height: 100%; min-height: 400px; } }

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

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

.blog-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(220, 35%, 12%, 0.8) 0%, hsla(220, 35%, 12%, 0.2) 50%, transparent 100%);
}

.blog-featured-content {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.blog-category-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.25rem 0.75rem;
    background: var(--sunset);
    border-radius: 9999px;
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    margin-bottom: 1rem;
}

.blog-featured-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-foreground);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

@media (min-width: 768px) { .blog-featured-title { font-size: 2rem; } }
@media (min-width: 1024px) { .blog-featured-title { font-size: 2.5rem; } }

.blog-featured:hover .blog-featured-title { color: var(--sunset-light); }

.blog-featured-excerpt {
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 1rem;
    max-width: 32rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: hsla(0, 0%, 100%, 0.7);
    font-size: 0.875rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.blog-meta svg { width: 1rem; height: 1rem; }

.blog-recent {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-card {
    display: flex;
    gap: 1.25rem;
    padding: 1rem;
    background: var(--card);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.blog-card:hover { box-shadow: var(--shadow-medium); }

.blog-card-image {
    width: 8rem;
    height: 8rem;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 768px) { .blog-card-image { width: 10rem; } }

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

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

.blog-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.blog-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ocean);
    letter-spacing: 0.025em;
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) { .blog-card-title { font-size: 1.25rem; } }

.blog-card:hover .blog-card-title { color: var(--ocean); }

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Blog Link Styling */
a.blog-featured,
a.blog-card {
    text-decoration: none;
}

a.blog-card {
    display: flex;
}

a.blog-featured .blog-featured-title,
a.blog-featured .blog-featured-excerpt,
a.blog-card .blog-card-title,
a.blog-card .blog-category,
a.blog-card .blog-card-meta {
    color: inherit;
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: var(--sand-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item:hover { box-shadow: var(--shadow-elevated); }

.gallery-item > img {
    aspect-ratio: 4/3;
    width: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover > img { transform: scale(1.1); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: hsla(220, 35%, 12%, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay .btn {
    transform: scale(0.9);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay .btn { transform: scale(1); }

.gallery-title {
    padding: 1rem;
}

.gallery-title h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

/* ===== Newsletter Section ===== */
.newsletter-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

@media (min-width: 768px) { .newsletter-section { padding: 8rem 0; } }

.newsletter-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 50%, var(--midnight) 100%);
}

.newsletter-decor-1,
.newsletter-decor-2 {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(60px);
}

.newsletter-decor-1 {
    top: 0;
    left: 0;
    background: hsla(32, 95%, 55%, 0.2);
    transform: translate(-50%, -50%);
}

.newsletter-decor-2 {
    bottom: 0;
    right: 0;
    background: hsla(185, 60%, 55%, 0.2);
    transform: translate(50%, 50%);
}

.newsletter-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.newsletter-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--sunset-light);
}

.newsletter-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsla(0, 0%, 100%, 0.9);
}

.newsletter-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.newsletter-description {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
    max-width: 36rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .newsletter-form { flex-direction: row; }
}

.newsletter-input-wrapper {
    position: relative;
    flex: 1;
}

.newsletter-input-wrapper svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: var(--muted-foreground);
}

.newsletter-input-wrapper input {
    width: 100%;
    height: 3.5rem;
    padding: 0 1rem 0 3rem;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    background: hsla(0, 0%, 100%, 0.95);
    border: none;
    border-radius: 9999px;
    color: var(--foreground);
    outline: none;
}

.newsletter-input-wrapper input::placeholder { color: var(--muted-foreground); }

.newsletter-form .btn { height: 3.5rem; }

.newsletter-disclaimer {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.5);
    margin-top: 1.5rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--midnight);
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand { max-width: 24rem; }

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-bold {
    font-size: 1.875rem;
    color: var(--sand-light);
}

.footer-logo .logo-italic {
    font-size: 1.875rem;
    color: var(--sunset-light);
}

.footer-about {
    color: hsla(40, 33%, 97%, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsla(40, 33%, 97%, 0.6);
    font-size: 0.875rem;
}

.footer-contact-item svg { width: 1rem; height: 1rem; }

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sand-light);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: hsla(40, 33%, 97%, 0.7);
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--sunset-light); }

.footer-legal { margin-top: 2rem; }

.footer-legal a { color: hsla(40, 33%, 97%, 0.5); }
.footer-legal a:hover { color: hsla(40, 33%, 97%, 0.8); }

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: hsla(40, 33%, 97%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsla(40, 33%, 97%, 0.7);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--sunset);
    color: var(--primary-foreground);
}

.footer-social svg { width: 1.25rem; height: 1.25rem; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid hsla(40, 33%, 97%, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: hsla(40, 33%, 97%, 0.5);
}

.footer-made {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.heart-icon {
    width: 1rem;
    height: 1rem;
    color: var(--coral);
    fill: var(--coral);
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    padding: 1rem 1.5rem;
    background: var(--card);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-elevated);
    animation: slideUp 0.3s ease;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-content svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--ocean);
}

.toast-content span {
    font-weight: 500;
    color: var(--foreground);
}

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

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in { animation: fadeIn 0.6s ease forwards; }
