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

body {
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
    line-height: 1.7;
    color: #3a3a3a;
    background: linear-gradient(135deg, #fefcf8 0%, #f9f6f1 100%);
    background-attachment: fixed;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Dancing Script', 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #c4967a;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(196, 150, 122, 0.1);
}

h2 {
    font-size: 2.2rem;
    color: #b08968;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4a574, #9caf88);
    border-radius: 2px;
}

h3 {
    font-size: 1.6rem;
    color: #b08968;
    margin-bottom: 0.8rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 252, 248, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(196, 150, 122, 0.1);
    box-shadow: 0 4px 20px rgba(196, 150, 122, 0.08);
}

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

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

.logo-icon {
    width: 55px;
    height: 55px;
    background: rgba(196, 150, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(196, 150, 122, 0.15);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-family: 'Dancing Script', 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #c4967a;
    letter-spacing: -0.5px;
}

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

.nav-link {
    text-decoration: none;
    color: #5a5a5a;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
}

.nav-link:hover {
    color: #b08968;
    background: rgba(196, 150, 122, 0.08);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c4967a, #9caf88);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 60%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

.hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fefcf8 0%, #f5ede4 30%, #ebe6dc 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="paper" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1.5" fill="%23c4967a" opacity="0.08"/><circle cx="150" cy="150" r="1" fill="%23b08968" opacity="0.06"/><circle cx="100" cy="20" r="0.8" fill="%239caf88" opacity="0.05"/><circle cx="20" cy="120" r="1.2" fill="%23d4a574" opacity="0.07"/></pattern></defs><rect width="200" height="200" fill="url(%23paper)"/></svg>');
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(196, 150, 122, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(156, 175, 136, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid; /* Reverts to original grid for desktop */
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 550px;
}

.subtitle {
    font-size: 1.2rem;
    color: #b08968;
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

.description {
    font-size: 0.9rem;
    color: #6b6b6b;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #c4967a, #b08968);
    color: white;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(196, 150, 122, 0.25);
    white-space: nowrap;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 150, 122, 0.35);
    background: linear-gradient(135deg, #b08968, #9caf88);
}

.hero-image {
    position: relative;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration-fallback {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(196, 150, 122, 0.15);
}

.cta-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.hero-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 8s ease-in-out infinite;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@keyframes logoFloat {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
    }
}

.floating-elements { display: none; }

.floating-box {
    position: absolute;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(196, 150, 122, 0.15);
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.box-1 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(196, 150, 122, 0.8), rgba(245, 237, 228, 0.9));
    top: 8%;
    left: 12%;
    animation-delay: 0s;
}

.box-2 {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.7), rgba(212, 165, 116, 0.8));
    top: 15%;
    right: 18%;
    animation-delay: 2s;
}

.box-3 {
    width: 95px;
    height: 95px;
    background: linear-gradient(135deg, rgba(245, 237, 228, 0.9), rgba(235, 230, 220, 0.8));
    bottom: 15%;
    left: 25%;
    animation-delay: 4s;
}

.box-4 {
    width: 125px;
    height: 125px;
    background: linear-gradient(135deg, rgba(176, 137, 104, 0.7), rgba(156, 175, 136, 0.6));
    bottom: 8%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        filter: drop-shadow(0 15px 40px rgba(196, 150, 122, 0.15));
    }
    50% { 
        transform: translateY(-25px) rotate(2deg);
        filter: drop-shadow(0 25px 50px rgba(196, 150, 122, 0.2));
    }
}

/* Slideshow Section */
.slideshow-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f9f6f1 0%, #f5ede4 100%);
    position: relative;
}

.slideshow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.8" fill="%23c4967a" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #7a7a7a;
    margin-bottom: 1.5rem;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

.slideshow-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(196, 150, 122, 0.15);
    background: transparent;
}

.slideshow-wrapper {
    position: relative;
    height: 550px;
    background: #fefcf8;
    border-radius: 20px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    border-radius: 20px;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
}

/* Specific styling for the pencil holder image to show the full box */
.slide img[src*="drzac_za_olovke"] {
    object-fit: cover;
    object-position: center 60%;
}

.slide img[src*="kutija_plava1"] {
    object-fit: cover;
    object-position: center 30%;
}

.slide img[src*="kutija_pticice"] {
    object-fit: cover;
    object-position: center 100%;
}

.slide-caption {
    position: absolute;
    bottom: 35px;
    left: 0;
    right: 0;
    background: none;
    padding: 1rem;
    text-align: center;
}

.slide-caption h3 {
    color: white;
    margin-bottom: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(254, 252, 248, 0.95);
    border: 2px solid rgba(196, 150, 122, 0.2);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    color: #c4967a;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(196, 150, 122, 0.15);
}

.slideshow-btn:hover {
    background: rgba(196, 150, 122, 0.1);
    border-color: rgba(196, 150, 122, 0.4);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 25px rgba(196, 150, 122, 0.25);
}

.prev {
    left: 25px;
}

.next {
    right: 25px;
}

.slideshow-dots {
    position: absolute;
    bottom: 15px;
    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.7);
    border: 1px solid rgba(196, 150, 122, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}

.dot:hover {
    background: rgba(196, 150, 122, 0.4);
    border-color: rgba(196, 150, 122, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: rgba(196, 150, 122, 0.9);
    border-color: rgba(196, 150, 122, 1);
    box-shadow: none;
}

/* Instagram Showcase Section */
.instagram-showcase {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f9f6f1 0%, #ebe6dc 50%, #f5ede4 100%);
    position: relative;
}

.instagram-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><defs><pattern id="instagram-pattern" width="24" height="24" patternUnits="userSpaceOnUse"><circle cx="12" cy="12" r="1" fill="%23c4967a" opacity="0.05"/><circle cx="6" cy="18" r="0.5" fill="%239caf88" opacity="0.03"/></pattern></defs><rect width="120" height="120" fill="url(%23instagram-pattern)"/></svg>');
    pointer-events: none;
}

.instagram-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 1.5rem;
}

.instagram-text h3 {
    color: #b08968;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
}

.instagram-text p {
    font-size: 0.9rem;
    color: #6b6b6b;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, #c4967a, #b08968);
    color: white;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(196, 150, 122, 0.25);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.instagram-follow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.instagram-follow-btn:hover::before {
    left: 100%;
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 150, 122, 0.35);
    background: linear-gradient(135deg, #b08968, #9caf88);
}

.instagram-follow-btn i {
    font-size: 1.1rem;
}

.instagram-embed {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(196, 150, 122, 0.2);
    border: 3px solid rgba(196, 150, 122, 0.3);
    transition: all 0.3s ease;
    background: rgba(254, 252, 248, 0.95);
    animation: pulseGlow 3s ease-in-out infinite;
}

.video-container:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 70px rgba(196, 150, 122, 0.4);
    border-color: rgba(196, 150, 122, 0.6);
    animation: none;
}

.video-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #c4967a, #b08968, #9caf88, #c4967a);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    animation: borderRotate 4s linear infinite;
}

.video-container:hover::before {
    opacity: 0.6;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 20px 50px rgba(196, 150, 122, 0.2);
        border-color: rgba(196, 150, 122, 0.3);
    }
    50% { 
        box-shadow: 0 25px 60px rgba(196, 150, 122, 0.35);
        border-color: rgba(196, 150, 122, 0.5);
    }
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 17px;
}

.video-container.video-active {
    border-color: rgba(196, 150, 122, 0.6);
    box-shadow: 0 25px 60px rgba(196, 150, 122, 0.3);
}

.video-container.video-active::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 23px;
    background: linear-gradient(45deg, #c4967a, #b08968, #9caf88);
    z-index: -1;
    animation: borderGlow 2s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.video-prompt {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(196, 150, 122, 0.95), rgba(176, 137, 104, 0.95));
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 10;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
    box-shadow: 0 8px 20px rgba(196, 150, 122, 0.3);
    animation: promptPulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.play-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: playIconBounce 1.5s ease-in-out infinite;
}

.play-icon i {
    font-size: 0.7rem;
    margin-left: 2px; /* Align play icon properly */
}

@keyframes promptPulse {
    0%, 100% { 
        opacity: 0.9;
        transform: translateY(0px);
    }
    50% { 
        opacity: 1;
        transform: translateY(-2px);
    }
}

@keyframes playIconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Video Showcase Section */
.video-showcase {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f9f6f1 0%, #ebe6dc 50%, #f5ede4 100%);
    position: relative;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><defs><pattern id="video-pattern" width="24" height="24" patternUnits="userSpaceOnUse"><circle cx="12" cy="12" r="1" fill="%23c4967a" opacity="0.05"/><circle cx="6" cy="18" r="0.5" fill="%239caf88" opacity="0.03"/></pattern></defs><rect width="120" height="120" fill="url(%23video-pattern)"/></svg>');
    pointer-events: none;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 1.5rem;
}

.video-text h3 {
    color: #b08968;
    margin-bottom: 0.8rem;
    margin-top: -4rem;
    font-size: 1.6rem;
}

.video-text p {
    font-size: 0.9rem;
    color: #6b6b6b;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

.video-embed {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.hosted-video-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(196, 150, 122, 0.2);
    border: 3px solid rgba(196, 150, 122, 0.3);
    transition: all 0.3s ease;
    background: rgba(254, 252, 248, 0.95);
}

.hosted-video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(196, 150, 122, 0.25);
    border-color: rgba(196, 150, 122, 0.4);
}

.hosted-video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 17px;
}

.placeholder-image {
    margin: 1.5rem 0;
}

.placeholder-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.placeholder-image img:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.placeholder-image .image-caption {
    margin-top: 0.8rem;
    text-align: center;
    padding: 0 1rem;
}

.placeholder-image .image-caption p {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

/* Responsive adjustments for placeholder image */
@media (max-width: 768px) {
    .placeholder-image img {
        height: 300px;
    }
    
    .placeholder-image .image-caption p {
        font-size: 0.9rem;
    }
}

/* About Page Hero */
.about-hero {
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0 2rem;
    background: linear-gradient(135deg, #fefcf8 0%, #f5ede4 30%, #ebe6dc 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="about-paper" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1.5" fill="%23c4967a" opacity="0.08"/><circle cx="150" cy="150" r="1" fill="%23b08968" opacity="0.06"/><circle cx="100" cy="20" r="0.8" fill="%239caf88" opacity="0.05"/><circle cx="20" cy="120" r="1.2" fill="%23d4a574" opacity="0.07"/></pattern></defs><rect width="200" height="200" fill="url(%23about-paper)"/></svg>');
    pointer-events: none;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 3rem;
    color: #c4967a;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', serif;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #7a7a7a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
    padding: 0 2rem;
}

/* Navigation Active State */
.nav-link.active {
    color: #b08968;
    background: rgba(196, 150, 122, 0.15);
    font-weight: 600;
}

/* About Section */
.about {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #fefcf8 0%, #f9f6f1 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(156, 175, 136, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 0.9rem;
    color: #6b6b6b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(254, 252, 248, 0.8);
    border: 1px solid rgba(196, 150, 122, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(196, 150, 122, 0.08);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(196, 150, 122, 0.15);
    border-color: rgba(196, 150, 122, 0.2);
}

.feature i {
    font-size: 2.8rem;
    color: #c4967a;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(196, 150, 122, 0.2));
}

.feature h4 {
    color: #b08968;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature p {
    color: #7a7a7a;
    font-size: 0.85rem;
    line-height: 1.5;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(196, 150, 122, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(196, 150, 122, 0.25);
}

/* Contact Section */
.contact {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f5ede4 0%, #ebe6dc 50%, #fefcf8 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><pattern id="contact-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23c4967a" opacity="0.06"/><circle cx="5" cy="25" r="0.5" fill="%239caf88" opacity="0.04"/></pattern></defs><rect width="150" height="150" fill="url(%23contact-pattern)"/></svg>');
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(254, 252, 248, 0.9);
    border: 1px solid rgba(196, 150, 122, 0.15);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(196, 150, 122, 0.12);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 150, 122, 0.18);
    border-color: rgba(196, 150, 122, 0.25);
}

.contact-item i {
    font-size: 1.8rem;
    color: #c4967a;
    width: 50px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(196, 150, 122, 0.2));
}

.contact-item h4 {
    color: #b08968;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: #6b6b6b;
    font-size: 0.9rem;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

.instagram-link {
    color: #c4967a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: #b08968;
    text-decoration: underline;
}

.contact-image {
    margin-top: 1rem;
    text-align: center;
}

.contact-image img {
    width: 100%;
    max-width: 600px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(196, 150, 122, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(196, 150, 122, 0.2);
}

.image-caption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #7a7a7a;
    font-style: italic;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

.contact-form {
    background: rgba(254, 252, 248, 0.95);
    border: 1px solid rgba(196, 150, 122, 0.15);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(196, 150, 122, 0.15);
    backdrop-filter: blur(15px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(196, 150, 122, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(196, 150, 122, 0.6);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 4px rgba(196, 150, 122, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9a9a9a;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #c4967a, #b08968);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(196, 150, 122, 0.25);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 150, 122, 0.35);
    background: linear-gradient(135deg, #b08968, #9caf88);
}

/* Form Messages */
.form-message {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.1), rgba(156, 175, 136, 0.05));
    border: 1px solid rgba(156, 175, 136, 0.3);
    color: #4a7c59;
}

.form-message.error {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #721c24;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 100%);
    color: #f5f5f5;
    padding: 1.5rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 150, 122, 0.3), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

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

.footer-logo .logo-text {
    color: #f5f5f5;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c4967a;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #c4967a;
}

.footer-links a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #c4967a, #b08968);
    border: 2px solid rgba(196, 150, 122, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: linear-gradient(135deg, #b08968, #9caf88);
    border-color: rgba(196, 150, 122, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 150, 122, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(196, 150, 122, 0.2);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.8rem;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

/* Gallery Page Styles */
.gallery-hero {
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(75px + 2rem) 0 2rem;
    background: linear-gradient(135deg, #fefcf8 0%, #f5ede4 30%, #ebe6dc 100%);
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="gallery-paper" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1.5" fill="%23c4967a" opacity="0.08"/><circle cx="150" cy="150" r="1" fill="%23b08968" opacity="0.06"/><circle cx="100" cy="20" r="0.8" fill="%239caf88" opacity="0.05"/><circle cx="20" cy="120" r="1.2" fill="%23d4a574" opacity="0.07"/></pattern></defs><rect width="200" height="200" fill="url(%23gallery-paper)"/></svg>');
    pointer-events: none;
}

.gallery-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-hero h1 {
    font-size: 3.2rem;
    color: #c4967a;
    margin-bottom: 0.8rem;
    font-family: 'Dancing Script', 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(196, 150, 122, 0.1);
    line-height: 1.2;
}

.gallery-controls {
    padding: 1.5rem 0;
    background: rgba(254, 252, 248, 0.95);
    border-bottom: 1px solid rgba(196, 150, 122, 0.1);
    position: sticky;
    top: 85px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.search-filter-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.search-box {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #c4967a;
    font-size: 1.1rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(196, 150, 122, 0.2);
    border-radius: 25px;
    font-size: 1rem;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.search-box input:focus {
    outline: none;
    border-color: rgba(196, 150, 122, 0.6);
    box-shadow: 0 0 0 4px rgba(196, 150, 122, 0.1);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(196, 150, 122, 0.2);
    border-radius: 25px;
    color: #7a7a7a;
    font-size: 0.9rem;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.filter-btn:hover {
    background: rgba(196, 150, 122, 0.1);
    border-color: rgba(196, 150, 122, 0.4);
    color: #b08968;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #c4967a, #b08968);
    border-color: #c4967a;
    color: white;
    box-shadow: 0 4px 15px rgba(196, 150, 122, 0.3);
}

.filter-btn i {
    font-size: 1rem;
}

.gallery-main {
    padding: 2rem 0;
    background: linear-gradient(135deg, #fefcf8 0%, #f9f6f1 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(196, 150, 122, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 150, 122, 0.1);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(196, 150, 122, 0.25);
    border-color: rgba(196, 150, 122, 0.2);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    pointer-events: none; /* allow clicks to pass through to the image */
}

.gallery-info h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Dancing Script', 'Playfair Display', serif;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-category {
    display: inline-block;
    background: rgba(196, 150, 122, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 150, 122, 0.1);
}

.no-results-content i {
    font-size: 3rem;
    color: #c4967a;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.no-results-content h3 {
    color: #b08968;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.no-results-content p {
    color: #7a7a7a;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.gallery-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f5ede4 0%, #ebe6dc 50%, #fefcf8 100%);
    text-align: center;
}

.cta-content h2 {
    color: #b08968;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-content p {
    color: #7a7a7a;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Image Modal Styles */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

#modalImage {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

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

.modal-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-family: 'Dancing Script', serif;
    font-weight: 600;
    color: #f5f5f5;
}

.modal-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.modal-category {
    display: inline-block;
    background: linear-gradient(135deg, #c4967a, #b08968);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.modal-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.modal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.modal-nav-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: rgba(254, 252, 248, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 15px 40px rgba(196, 150, 122, 0.15);
        padding: 3rem 0;
        border-bottom: 1px solid rgba(196, 150, 122, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        min-height: 100vh;
        padding: calc(65px + 4rem) 0 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
        width: 100%;
    }

    .hero-image {
        /* Remove the fixed height on mobile */
        height: auto;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
        margin-top: 0.5rem;
    }
    
    .description {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .subtitle {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    h1 {
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .instagram-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .instagram-embed {
        order: -1;
    }
    
    .video-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .video-embed {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    
    .slideshow-wrapper {
        height: 350px;
    }
    
    .floating-elements {
        display: none;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 6rem 0 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
        width: 100%;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-logo {
        width: 70px;
        height: 70px;
    }
    
    .slideshow-wrapper {
        height: 280px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .nav-menu {
        top: 75px;
        padding: 2rem 0;
    }
    
    .slideshow-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .prev {
        left: 15px;
    }
    
    .next {
        right: 15px;
    }
    
    /* Gallery responsive styles */
    .gallery-hero {
        min-height: 40vh;
        padding: calc(65px + 4rem) 0 2rem;
    }
    
    .about-hero {
        padding: calc(55px + 4rem) 0 2rem;
    }
    
    .gallery-hero h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .gallery-hero .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .gallery-hero .hero-subtitle {
        font-size: 0.9rem;
        color: rgba(94, 75, 60, 0.85);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
        font-family: 'Inter', 'Source Sans Pro', sans-serif;
    }
    
    .gallery-controls {
        position: static;
        top: auto;
    }
    
    .search-filter-container {
        padding: 0 1rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-info h3 {
        font-size: 1.1rem;
    }
    
    .gallery-info p {
        font-size: 0.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    /* Modal responsive styles */
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
        padding: 1rem;
    }
    
    .modal-close {
        top: -40px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    #modalImage {
        max-height: 60vh;
        margin-bottom: 1rem;
    }
    
    .modal-info h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .modal-info p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .modal-category {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .modal-navigation {
        padding: 0 1rem;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Blog Page Styles */
.blog-hero {
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(85px + 2rem) 0 2rem;
    background: linear-gradient(135deg, #fefcf8 0%, #f5ede4 30%, #ebe6dc 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="blog-paper" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1.5" fill="%23c4967a" opacity="0.08"/><circle cx="150" cy="150" r="1" fill="%23b08968" opacity="0.06"/><circle cx="100" cy="20" r="0.8" fill="%239caf88" opacity="0.05"/><circle cx="20" cy="120" r="1.2" fill="%23d4a574" opacity="0.07"/></pattern></defs><rect width="200" height="200" fill="url(%23blog-paper)"/></svg>');
    pointer-events: none;
}

.blog-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-hero h1 {
    font-size: 3.2rem;
    color: #c4967a;
    margin-bottom: 0.8rem;
    font-family: 'Dancing Script', 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(196, 150, 122, 0.1);
    line-height: 1.2;
}

.blog-hero .hero-subtitle {
    font-size: 0.9rem;
    color: rgba(94, 75, 60, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

.blog-main {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fefcf8 0%, #f9f6f1 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(196, 150, 122, 0.1);
    border: 1px solid rgba(196, 150, 122, 0.1);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1.25rem;
    align-items: start;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(196, 150, 122, 0.2);
    border-color: rgba(196, 150, 122, 0.2);
}

.blog-image {
    position: relative;
    height: 140px;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

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

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

.blog-content {
    padding: 1.25rem 1.25rem 1.25rem 0;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #b08968;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

.blog-date {
    display: flex;
    align-items: center;
}

.blog-date::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
}

.blog-category {
    display: flex;
    align-items: center;
    background: rgba(196, 150, 122, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    color: #c4967a;
    font-weight: 500;
}

.blog-content h2 {
    font-size: 1.4rem;
    color: #c4967a;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.blog-content p {
    color: #5e4b3c;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tag {
    background: linear-gradient(135deg, #c4967a, #b08968);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

.blog-cta {
    background: linear-gradient(135deg, #fefcf8 0%, #f5ede4 50%, #ebe6dc 100%);
    color: #5e4b3c;
    padding: 2.2rem 0;
    text-align: center;
}

.blog-cta h2 {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    font-family: 'Dancing Script', 'Playfair Display', serif;
    font-weight: 700;
    color: #c4967a;
}

.blog-cta p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

.blog-cta .cta-button {
    background: linear-gradient(135deg, #c4967a, #b08968);
    color: #ffffff;
    border: none;
    box-shadow: 0 6px 16px rgba(176, 137, 104, 0.2);
    padding: 0.6rem 1.1rem;
    font-size: 0.95rem;
}

.blog-cta .cta-button:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

/* Blog Mobile Responsive */
@media (max-width: 768px) {
    .blog-hero {
        min-height: 40vh;
        padding: calc(85px + 4rem) 0 2rem;
    }
    
    .blog-hero h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .blog-hero .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .blog-post {
        border-radius: 15px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 1.2rem;
    }
    
    .blog-content h2 {
        font-size: 1.2rem;
    }
    
    .blog-cta h2 {
        font-size: 2rem;
    }
    
    .blog-cta p {
        font-size: 1rem;
    }
}

/* Thank You Page Styles */
.thank-you-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #fefcf8 0%, #f9f6f1 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 4rem;
    color: #9caf88;
    margin-bottom: 2rem;
    animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #c4967a;
    margin-bottom: 0.5rem;
    font-family: 'Dancing Script', serif;
}

.thank-you-content .hero-subtitle {
    font-size: 1.2rem;
    color: #b08968;
    margin-bottom: 2rem;
    font-weight: 500;
}

.thank-you-message {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(196, 150, 122, 0.1);
    border: 1px solid rgba(196, 150, 122, 0.1);
}

.thank-you-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 1rem;
}

.response-note {
    color: #9caf88 !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0 !important;
}

.response-note i {
    color: #9caf88;
}

.next-steps h3 {
    font-size: 1.4rem;
    color: #b08968;
    margin-bottom: 1.5rem;
    font-family: 'Dancing Script', serif;
}

.next-steps ul {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.next-steps li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #5a5a5a;
}

.next-steps li i {
    color: #9caf88;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.thank-you-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, #c4967a, #b08968);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(196, 150, 122, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #b08968;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #b08968;
    transition: all 0.3s ease;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 150, 122, 0.4);
}

.cta-button.secondary:hover {
    background: #b08968;
    color: white;
    transform: translateY(-3px);
}

.social-follow {
    border-top: 1px solid rgba(196, 150, 122, 0.2);
    padding-top: 2rem;
}

.social-follow p {
    font-size: 1rem;
    color: #7a7a7a;
    margin-bottom: 1rem;
}

.instagram-follow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #E4405F;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.instagram-follow:hover {
    transform: translateY(-2px);
    color: #d91a46;
}

.instagram-follow i {
    font-size: 1.3rem;
}

.thank-you-logo {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(196, 150, 122, 0.15);
    padding: 15px;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.logo-tagline {
    font-family: 'Dancing Script', serif;
    font-size: 1.5rem;
    color: #c4967a;
    font-weight: 600;
    margin: 0;
}

/* Featured Preview Section */
.featured-preview {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.5);
}

.featured-preview h2 {
    font-size: 2.5rem;
    color: #b08968;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', serif;
}

.featured-preview .section-subtitle {
    font-size: 1.1rem;
    color: #7a7a7a;
    margin-bottom: 3rem;
    text-align: center;
}

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

.preview-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.preview-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-item:hover img {
    transform: scale(1.05);
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.preview-item:hover .preview-overlay {
    transform: translateY(0);
}

.preview-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Dancing Script', serif;
}

.preview-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

/* Mobile Responsiveness for Thank You Page */
@media (max-width: 768px) {
    .thank-you-hero {
        padding: 100px 0 40px;
        min-height: 70vh;
    }
    
    .thank-you-content h1 {
        font-size: 2.2rem;
    }
    
    .thank-you-content .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .thank-you-message {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 0.9rem 2rem;
    }
    
    .logo-container {
        width: 80px;
        height: 80px;
        padding: 12px;
    }
    
    .logo-tagline {
        font-size: 1.3rem;
    }
    
    .social-follow {
        padding-top: 1.5rem;
    }
}