/* CSS Variables - DESSERD by Irina Brand Colors (Logo Pink theme) */
:root {
    --color-primary: #E8588C;
    --color-primary-light: #f07aa5;
    --color-primary-dark: #d14477;
    --color-cream: #faf8f8;
    --color-white: #ffffff;
    --color-text: #2d2d2d;
    --color-text-light: #5a5a5a;
    --color-accent: #E8588C;
    --color-black: #1a1a1a;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-cream);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.7) 40%,
        rgba(232, 88, 140, 0.15) 100%
    );
    z-index: -1;
}

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

.hero-logo {
    max-width: 500px;
    width: 85%;
    height: auto;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: logoReveal 1.2s var(--transition-smooth) 0.3s forwards;
}

@keyframes logoReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: clamp(0.85rem, 2.5vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-top: 2rem;
    color: var(--color-text);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s var(--transition-smooth) 0.8s forwards;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text);
    opacity: 0;
    animation: fadeIn 1s var(--transition-smooth) 1.2s forwards;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Main Content */
.main-content {
    background-color: var(--color-cream);
}

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

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.about-card,
.contact-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth);
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary), var(--color-primary-light));
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover,
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(232, 88, 140, 0.15);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    border-radius: 2px;
}

.about-text {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.services-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.services-list {
    list-style: none;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(232, 88, 140, 0.2);
    transition: all 0.3s var(--transition-smooth);
}

.service-item:hover {
    background: linear-gradient(90deg, rgba(232, 88, 140, 0.08) 0%, transparent 100%);
}

.service-item:hover {
    padding-left: 10px;
}

.service-icon {
    color: var(--color-primary);
    margin-right: 1rem;
    font-size: 0.75rem;
}

/* Contact Card */
.contact-card {
    background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-card .section-title {
    color: var(--color-white);
}

.contact-card .section-title::after {
    background: rgba(255, 255, 255, 0.5);
}

.contact-intro {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--color-white);
    text-decoration: none;
    transition: transform 0.3s var(--transition-smooth), opacity 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
    opacity: 0.9;
}

.contact-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    opacity: 0.9;
}

.contact-icon.instagram {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

.contact-icon.facebook {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

.contact-icon.whatsapp {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

.contact-icon.location {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

/* Gallery Preview */
.gallery-preview {
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: galleryFadeIn 0.6s var(--transition-smooth) calc(var(--delay)) forwards;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s var(--transition-smooth);
}

.gallery-item:hover {
    box-shadow: 0 15px 45px rgba(232, 88, 140, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(232, 88, 140, 0) 0%,
        rgba(232, 88, 140, 0.25) 100%
    );
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
    z-index: 1;
}

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

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

/* Instagram Section */
.instagram-section {
    background: var(--color-white);
    padding: 4rem 2rem;
    margin-top: 2rem;
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.instagram-logo svg {
    width: 30px;
    height: 30px;
}

.instagram-title {
    text-align: left;
}

.instagram-title h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.instagram-title p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.instagram-follow-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 0.85rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.4s var(--transition-smooth);
    margin-left: auto;
    box-shadow: 0 4px 15px rgba(232, 88, 140, 0.3);
}

.instagram-follow-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 88, 140, 0.35);
}

/* Instagram Widget Container */
.instagram-widget-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 1rem;
}

/* Instagram Embeds Grid */
.instagram-embeds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 0 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Instagram post frame wrapper */
.insta-frame {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.insta-frame:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(232, 88, 140, 0.25);
}

/* Decorative frame overlay */
.insta-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    z-index: 10;
    pointer-events: none;
    transition: border-color 0.3s var(--transition-smooth);
}

.insta-frame:hover::before {
    border-color: rgba(232, 88, 140, 0.4);
}

/* Inner shadow for depth */
.insta-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    z-index: 10;
    pointer-events: none;
}

/* Hide header and footer by cropping */
.insta-frame .instagram-media {
    margin: 0 !important;
    min-width: 0 !important;
    max-width: none !important;
    width: calc(100% + 2px) !important;
    position: absolute !important;
    top: -54px !important;
    left: -1px !important;
    border: none !important;
    background: transparent !important;
}

.insta-frame .instagram-media iframe {
    border: none !important;
}

/* Instagram icon overlay on hover */
.insta-frame .insta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 88, 140, 0.85) 0%, rgba(209, 68, 119, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
    z-index: 5;
    border-radius: 20px;
}

.insta-frame:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay svg {
    width: 48px;
    height: 48px;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@media (max-width: 992px) {
    .instagram-embeds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 1rem;
    }
}

@media (max-width: 600px) {
    .instagram-embeds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .insta-frame {
        border-radius: 12px;
    }

    .insta-frame::before,
    .insta-frame::after {
        border-radius: 12px;
    }

    .insta-overlay {
        border-radius: 12px;
    }

    .insta-overlay svg {
        width: 32px;
        height: 32px;
    }
}

/* Pinterest-style scattered grid */
.pinterest-grid {
    position: relative;
    height: 750px;
    max-width: 950px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.pin-item {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    animation: pinFloat 0.6s var(--transition-smooth) calc(var(--delay)) forwards;
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.pin-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.pin-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Position 1: Left - small square */
.pin-small-left {
    left: -150px;
    top: 80px;
    width: 300px;
    height: 375px;
}

/* Position 2: Center - large main image */
.pin-large-center {
    left: 170px;
    top: 0;
    width: 400px;
    height: 500px;
}

/* Position 3: Right top - small horizontal */
.pin-small-right-top {
    right: 40px;
    top: 100px;
    width: 280px;
    height: 180px;
}

/* Position 4: Right bottom - large vertical */
.pin-large-right-bottom {
    right: 40px;
    top: 295px;
    width: 320px;
    height: 380px;
}

/* Position 5: Bottom left - under main image */
.pin-bottom-left {
    left: 71px;
    top: 515px;
    width: 299px;
    height: 208px;
}

/* Position 6: Bottom center-right */
.pin-bottom-center {
    left: 385px;
    top: 515px;
    width: 180px;
    height: 160px;
}

@keyframes pinFloat {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 1.5rem 2rem;
}

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

.footer-logo {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.footer-content p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

.footer-address {
    font-weight: 500;
    opacity: 0.9 !important;
    margin-bottom: 0.25rem !important;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s var(--transition-smooth), transform 0.3s var(--transition-smooth);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.7);
        opacity: 0.5;
    }
}

@keyframes galleryFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Fade in on scroll */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-section {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pinterest-grid {
        height: 580px;
        max-width: 750px;
    }

    .pin-small-left {
        width: 220px;
        height: 280px;
        top: 70px;
    }

    .pin-large-center {
        left: 170px;
        width: 320px;
        height: 400px;
    }

    .pin-small-right-top {
        width: 180px;
        height: 120px;
        top: 80px;
    }

    .pin-large-right-bottom {
        width: 220px;
        height: 280px;
        top: 230px;
    }

    .pin-bottom-left {
        left: 140px;
        top: 430px;
        width: 180px;
        height: 130px;
    }

    .pin-bottom-center {
        left: 340px;
        top: 430px;
        width: 150px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 2rem 1rem;
    }

    .about-card,
    .contact-card {
        padding: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .instagram-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .instagram-follow-btn {
        margin-left: 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-logo {
        max-width: 120px;
    }

    .pinterest-grid {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        padding: 0 1rem;
        left: 0;
        transform: none;
    }

    .pin-item {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
    }

    .pin-small-left {
        width: 100%;
        height: 180px;
    }

    .pin-large-center {
        width: 100%;
        height: 240px;
        animation: pinFloat 0.6s var(--transition-smooth) calc(var(--delay)) forwards;
    }

    .pin-small-right-top {
        width: 100%;
        height: 150px;
    }

    .pin-large-right-bottom {
        width: 100%;
        height: 200px;
    }

    .pin-bottom-left {
        width: 100%;
        height: 180px;
    }

    .pin-bottom-center {
        width: 100%;
        height: 150px;
        animation: pinFloat 0.6s var(--transition-smooth) calc(var(--delay)) forwards;
    }

    .pin-item:hover {
        transform: translateY(-3px) scale(1.01) !important;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .title-line-1 {
        letter-spacing: 0.05em;
    }

    .title-line-2 {
        letter-spacing: 0.15em;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .pinterest-grid {
        gap: 0.375rem;
    }

    .pin-item {
        border-radius: 12px;
    }

    .pin-small-left,
    .pin-small-right-top,
    .pin-bottom-center {
        height: 130px;
    }

    .pin-large-center {
        height: 200px;
    }

    .pin-large-right-bottom,
    .pin-bottom-left {
        height: 150px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
