/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2E7D32;
    background-color: #F1F8E9;
    overflow-x: hidden;
}

/* Color variables */
:root {
    --primary-green: #81C784;
    --secondary-green: #A8D5BA;
    --light-green: #C8E6C9;
    --background-green: #F1F8E9;
    --dark-green: #2E7D32;
    --white: #FFFFFF;
    --shadow: rgba(129, 199, 132, 0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.leaf-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    position: relative;
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--primary-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-green);
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-green), var(--light-green), var(--primary-green));
    background-size: 400% 400%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(46, 125, 50, 0.1);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--dark-green);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--dark-green);
    opacity: 0.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(129, 199, 132, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(129, 199, 132, 0); }
    100% { box-shadow: 0 0 0 0 rgba(129, 199, 132, 0); }
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow);
    background: linear-gradient(135deg, #66BB6A, var(--primary-green));
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: floating 3s ease-in-out infinite;
}

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

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 2px;
    animation: bounce 2s infinite;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--dark-green);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.about-paragraph {
    font-size: 1.1rem;
    color: var(--dark-green);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
}

.about-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
    border-radius: 1rem;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.placeholder-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.placeholder-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.placeholder-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Catalog Section */
.catalog {
    background: var(--background-green);
}

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

.catalog-item {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 230, 201, 0.5);
}

.catalog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(129, 199, 132, 0.2);
    border-color: var(--primary-green);
}

.catalog-image {
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    border-radius: 0.5rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.catalog-icon {
    width: 64px;
    height: 64px;
    color: var(--primary-green);
}

.catalog-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.catalog-description {
    color: var(--dark-green);
    opacity: 0.8;
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(129, 199, 132, 0.3);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

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

/* Corner indicator for gallery items */
.corner-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-green);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.gallery-item:hover .corner-indicator {
    opacity: 1;
    transform: translateY(0);
}

/* Hover overlay effect */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(129, 199, 132, 0.2), 
        rgba(168, 213, 186, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

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

/* Eye icon on hover */
.gallery-item::after {
    content: '👁️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: var(--white);
    z-index: 4;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Fallback for images that fail to load */
.gallery-img:not([src]), 
.gallery-img[src=""],
.gallery-img[src*="error"] {
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 3rem;
}

.gallery-img:not([src])::after, 
.gallery-img[src=""]::after,
.gallery-img[src*="error"]::after {
    content: '🌸';
    font-size: 3rem;
}

/* Loading animation for images - removed to prevent conflicts */

/* Contact Section */
.contact {
    background: var(--background-green);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 230, 201, 0.5);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-form:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(129, 199, 132, 0.2);
    border-color: var(--primary-green);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-green);
    border-radius: 0.5rem;
    background: var(--white);
    color: var(--dark-green);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(129, 199, 132, 0.1);
}

.form-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow);
    background: linear-gradient(135deg, #66BB6A, var(--primary-green));
}

/* Footer */
.footer {
    background: var(--white);
    border-top: 1px solid var(--light-green);
    padding: 2rem 0;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
}

.footer-text {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-copyright {
    color: var(--dark-green);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 0 1rem;
    }
}

/* Smooth animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

/* Utility classes */
.text-gradient {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}




/* Lightbox Styles */
.lightbox {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.9); 
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev-button,
.next-button {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.prev-button {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.next-button {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-button:hover,
.next-button:hover {
    background-color: rgba(0,0,0,0.8);
}




.about-image-actual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}




.catalog-image-actual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .gallery-item .corner-indicator {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
        top: 0.5rem;
        right: 0.5rem;
    }

    .gallery-item::after {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .gallery-item .corner-indicator {
        font-size: 0.65rem;
        padding: 0.15rem 0.3rem;
    }

    .gallery-item::after {
        font-size: 1.25rem;
    }
}

@media (max-width: 360px) {
    .gallery-grid {
        gap: 0.75rem;
        padding: 0 0.25rem;
    }

    .gallery-item .corner-indicator {
        font-size: 0.6rem;
        padding: 0.1rem 0.25rem;
    }
}

/* Large screen gallery improvements */
@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
        padding: 0 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

/* Landscape mobile improvements */
@media (max-width: 768px) and (orientation: landscape) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* Gallery performance optimizations */
.gallery-item {
    will-change: transform;
    backface-visibility: hidden;
}

/* Improved focus states for accessibility */
.gallery-item:focus {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}

/* Gallery item entrance animation - simplified */
.gallery-item {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for gallery items - removed to prevent conflicts */

/* Gallery fallback styles */
.gallery-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-align: center;
    padding: 1rem;
    z-index: 1;
    border-radius: 1rem;
}

/* Social Media Section */
.social-subtitle {
    font-size: 1.1rem;
    color: var(--dark-green);
    opacity: 0.8;
    margin-bottom: 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Enhanced social media effects */
.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.social-link:active {
    transform: translateY(-1px) scale(1.01);
}

/* Social network specific hover effects */
.social-link.telegram:hover {
    background: linear-gradient(135deg, #0099dd, #00b8ff);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #8B4BB8, #FE2E2E, #F88838);
}

.social-link.vk:hover {
    background: linear-gradient(135deg, #5D85B3, #6F92B8);
}

.social-link.whatsapp:hover {
    background: linear-gradient(135deg, #26E377, #139D8F);
}

/* Social icon animations */
.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

/* Social text animations */
.social-text {
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.social-link:hover .social-text {
    transform: translateX(5px);
}

/* Social handle animations */
.social-handle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-left: auto;
    transition: all 0.3s ease;
}

.social-link:hover .social-handle {
    opacity: 1;
    transform: translateX(-5px);
}

/* Social network specific colors */
.social-link.telegram {
    background: linear-gradient(135deg, #0088cc, #00a8ff);
}

.social-link.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
}

.social-link.vk {
    background: linear-gradient(135deg, #4C75A3, #5E81A8);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Contact info mini */
.contact-info-mini {
    text-align: center;
    padding: 1.5rem;
    background: rgba(129, 199, 132, 0.1);
    border-radius: 1rem;
    border: 1px solid rgba(129, 199, 132, 0.2);
}

.contact-note {
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-note:last-child {
    margin-bottom: 0;
}

/* Mobile responsive social media */
@media (max-width: 768px) {
    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        padding: 0.875rem 1.25rem;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    .social-text {
        font-size: 1rem;
    }

    .social-handle {
        font-size: 0.8rem;
    }

    .contact-info-mini {
        padding: 1.25rem;
    }

    .contact-note {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .social-link {
        padding: 0.75rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .social-handle {
        margin-left: 0;
        margin-top: 0.25rem;
    }

    .social-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-info-mini {
        padding: 1rem;
    }
}

/* Social media entrance animations */
.social-link {
    animation: socialLinkEntrance 0.6s ease-out;
}

.social-link:nth-child(1) { animation-delay: 0.1s; }
.social-link:nth-child(2) { animation-delay: 0.2s; }
.social-link:nth-child(3) { animation-delay: 0.3s; }
.social-link:nth-child(4) { animation-delay: 0.4s; }

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

/* Contact info mini animation */
.contact-info-mini {
    animation: contactInfoEntrance 0.8s ease-out 0.5s both;
}

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

/* Mobile responsive contact section */
@media (max-width: 768px) {
    .contact-content {
        min-height: 300px;
        padding: 0 1rem;
    }

    .contact-form {
        padding: 2rem;
        max-width: 100%;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        padding: 0.875rem 1.25rem;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    .social-text {
        font-size: 1rem;
    }

    .social-handle {
        font-size: 0.8rem;
    }

    .contact-info-mini {
        padding: 1.25rem;
    }

    .contact-note {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-content {
        min-height: 250px;
        padding: 0 0.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .social-link {
        padding: 0.75rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .social-handle {
        margin-left: 0;
        margin-top: 0.25rem;
    }

    .social-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-info-mini {
        padding: 1rem;
    }
}



