/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da Marca Leve na Marmita */
    --primary-green: #2D7A4F;
    --secondary-green: #3FA76B;
    --light-green: #6FCF97;
    --accent-green: #95E1B7;
    --beige-bg: #F5F1E8;
    --beige-light: #FAF8F3;
    --dark-text: #2C3E50;
    --gray-text: #6B7280;
    --white: #FFFFFF;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 122, 79, 0.08);
    --shadow-md: 0 4px 16px rgba(45, 122, 79, 0.12);
    --shadow-lg: 0 8px 32px rgba(45, 122, 79, 0.16);
    --shadow-xl: 0 12px 48px rgba(45, 122, 79, 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    --gradient-light: linear-gradient(135deg, var(--light-green) 0%, var(--accent-green) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(245, 241, 232, 0) 0%, rgba(245, 241, 232, 0.8) 100%);

    /* Transitions */
    --transition-speed: 0.3s;
}

/* Dark Mode Variables */
body.dark-mode {
    --beige-bg: #1a1a1a;
    --beige-light: #242424;
    --dark-text: #E8E8E8;
    --gray-text: #A0A0A0;
    --white: #2D2D2D;
    --gradient-overlay: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.8) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--beige-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    transition: background var(--transition-speed) ease, color var(--transition-speed) ease;
}

/* ========================================
   BACKGROUND DECORATION
   ======================================== */

.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-decoration::before,
.bg-decoration::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.bg-decoration::before {
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.bg-decoration::after {
    width: 400px;
    height: 400px;
    background: var(--gradient-light);
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

/* ========================================
   CONTAINER
   ======================================== */

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    position: relative;
}

/* ========================================
   LOGO
   ======================================== */

.logo-container {
    text-align: center;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.logo:hover::before {
    opacity: 0.3;
}

/* ========================================
   BRAND NAME & TAGLINE
   ======================================== */

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 0.8s ease-out 0.2s both;
    letter-spacing: -0.5px;
}

.tagline {
    text-align: center;
    color: var(--gray-text);
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

/* ========================================
   SOCIAL ICONS
   ======================================== */

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover i {
    color: var(--white);
    transform: scale(1.1);
}

/* ========================================
   BANNER
   ======================================== */

.banner-container {
    margin: 40px 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.banner-container.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.banner {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.banner-container:hover .banner {
    transform: scale(1.05);
}

.banner-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--gradient-overlay);
    pointer-events: none;
}

/* ========================================
   LINKS CONTAINER
   ======================================== */

.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ========================================
   SECTION TITLE
   ======================================== */

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 32px 0 16px;
    padding: 0 8px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease-out;
}

.section-title.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.section-title:first-child {
    margin-top: 0;
}

.section-title i {
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 122, 79, 0.1), rgba(111, 207, 151, 0.1));
    border-radius: 12px;
}

/* ========================================
   LINK CARDS
   ======================================== */

.link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 20px;
    text-decoration: none;
    color: var(--dark-text);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    border: 2px solid transparent;
}

.link-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism effect on hover */
.link-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.link-card:hover::before {
    opacity: 0.05;
}

.link-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 122, 79, 0.2);
}

/* Featured card (destaque) */
.link-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.link-card.featured .link-content h3,
.link-card.featured .link-content p {
    color: var(--white);
}

.link-card.featured .link-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.link-card.featured .link-arrow {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.link-card.featured:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

/* Link Icon */
.link-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(45, 122, 79, 0.1), rgba(111, 207, 151, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.link-card:hover .link-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Link Content */
.link-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.link-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

.link-content p {
    font-size: 0.875rem;
    color: var(--gray-text);
    font-weight: 400;
    margin: 0;
    transition: color 0.3s ease;
}

/* Link Arrow */
.link-arrow {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 10px;
    background: rgba(45, 122, 79, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 0.875rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.link-card:hover .link-arrow {
    transform: translateX(6px);
    background: var(--primary-green);
    color: var(--white);
}

.link-card.featured:hover .link-arrow {
    background: rgba(255, 255, 255, 0.4);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    text-align: center;
    margin-top: 60px;
    padding: 32px 20px 20px;
    color: var(--gray-text);
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.footer p {
    margin: 8px 0;
}

.footer i.fa-heart {
    color: #E74C3C;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-small {
    font-size: 0.8rem;
    opacity: 0.7;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 640px) {
    .container {
        padding: 32px 16px 48px;
    }

    .logo {
        width: 120px;
        height: 120px;
    }

    .brand-name {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }

    .banner {
        height: 220px;
    }

    .link-card {
        padding: 18px 20px;
    }

    .link-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
    }

    .link-content h3 {
        font-size: 1rem;
    }

    .link-content p {
        font-size: 0.85rem;
    }

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

@media (max-width: 400px) {
    .logo {
        width: 100px;
        height: 100px;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
    }

    .link-card {
        padding: 16px 18px;
        gap: 14px;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

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

/* Focus styles for accessibility */
a:focus-visible,
.link-card:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 4px;
}

/* ========================================
   LOADING SCREEN
   ======================================== */

.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--beige-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loading-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 4px solid rgba(45, 122, 79, 0.1);
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: var(--gray-text);
    font-size: 1rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   PARTICLES CANVAS
   ======================================== */

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    opacity: 0.4;
}

/* ========================================
   TOP CONTROLS (Theme Toggle & Share)
   ======================================== */

.top-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 12px;
}

.theme-toggle,
.share-btn {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--white);
    border: none;
    color: var(--primary-green);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover,
.share-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-lg);
    background: var(--primary-green);
    color: var(--white);
}

.theme-toggle:active,
.share-btn:active {
    transform: scale(0.95);
}

/* ========================================
   BANNER SLIDER
   ======================================== */

.banner-slider {
    position: relative;
    margin: 40px 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 320px;
    background: var(--white);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--primary-green);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 16px;
}

.slider-btn.next {
    right: 16px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 28px;
    border-radius: 5px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ========================================
   PHOTO GALLERY
   ======================================== */

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 122, 79, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

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

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

/* ========================================
   SHARE MODAL
   ======================================== */

.share-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.share-modal.active {
    opacity: 1;
    visibility: visible;
}

.share-content {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 32px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.share-modal.active .share-content {
    transform: scale(1);
}

.share-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(45, 122, 79, 0.1);
    border: none;
    color: var(--primary-green);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-close:hover {
    background: var(--primary-green);
    color: white;
    transform: rotate(90deg);
}

.share-content h3 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--dark-text);
    font-size: 1.5rem;
}

.qr-code-container {
    text-align: center;
    margin-bottom: 24px;
    padding: 24px 20px;
    background: var(--beige-bg);
    border-radius: 16px;
}

#qrcode {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    margin: 0 auto 16px;
    min-height: 220px;
    width: 220px;
}

#qrcode > * {
    display: block !important;
    margin: 0 auto !important;
}

#qrcode canvas {
    width: 180px !important;
    height: 180px !important;
}

#qrcode img {
    display: none !important;
}

.qr-code-container p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin: 0;
}

.link-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--beige-bg);
    border-radius: 12px;
    margin-bottom: 20px;
}

.link-text {
    flex: 1;
    font-size: 0.85rem;
    color: var(--gray-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: var(--primary-green);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: var(--secondary-green);
    transform: scale(1.1);
}

.copy-btn:active {
    transform: scale(0.95);
}

.share-buttons-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.share-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    text-decoration: none;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.share-bar-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.share-bar span {
    flex: 1;
    font-weight: 600;
}

.share-bar > i.fa-chevron-right {
    font-size: 0.9rem;
    opacity: 0.8;
}

.share-bar.whatsapp {
    background: #25D366;
}

.share-bar.facebook {
    background: #1877F2;
}

.share-bar.twitter {
    background: #1DA1F2;
}

.share-bar:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.share-bar:active {
    transform: translateX(2px);
}

.copy-feedback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    color: var(--primary-green);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 16px;
    background: rgba(45, 122, 79, 0.1);
    border-radius: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.copy-feedback i {
    font-size: 1.1rem;
}

.copy-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE - GALLERY & SLIDER
   ======================================== */

@media (max-width: 640px) {
    .banner-slider {
        height: 260px;
    }

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

    .top-controls {
        top: 16px;
        right: 16px;
        gap: 10px;
    }

    .theme-toggle,
    .share-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .share-content {
        padding: 32px 20px;
        max-width: 95%;
    }

    .share-content h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .qr-code-container {
        padding: 20px 16px;
    }

    #qrcode {
        padding: 16px;
        min-height: 180px;
        width: 180px;
    }

    #qrcode canvas {
        width: 150px !important;
        height: 150px !important;
    }

    #qrcode img {
        display: none !important;
    }

    .link-preview {
        padding: 12px 14px;
    }

    .link-text {
        font-size: 0.8rem;
    }

    .copy-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.9rem;
    }

    .share-bar {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .share-bar-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {
    .banner-slider {
        height: 220px;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .bg-decoration,
    .social-icons,
    .top-controls,
    .slider-btn,
    .slider-dots,
    .share-modal,
    .lightbox {
        display: none;
    }

    .link-card {
        page-break-inside: avoid;
    }
}
