/* Jungle Nature Theme for Aracelis Entebi Art Gallery */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Theme Variables */
:root {
    --primary-bg: linear-gradient(135deg, #2d5a4a 0%, #1a3d2e 25%, #0d2818 100%);
    --primary-text: #1a3d2e;
    --secondary-text: #81c784;
    --accent-color: #66bb6a;
    --primary-color: #4caf50;
    --text-color: #c8e6c9;
    --light-accent: #a5d6a7;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(76, 175, 80, 0.2);
    --footer-bg: rgba(26, 61, 46, 0.9);
    --ambient-glow-1: rgba(46, 125, 50, 0.1);
    --ambient-glow-2: rgba(102, 187, 106, 0.1);
    --ambient-glow-3: rgba(27, 94, 32, 0.1);
}

/* Light Theme */
html.light-theme, body.light-theme {
    --primary-bg: #ffffff;
    --primary-text: #1b2b1f;
    --secondary-text: #496a4f;
    --accent-color: #2e7d32;
    --primary-color: #2e7d32;
    --text-color: #222222;
    --card-bg: #ffffff;
    --card-border: rgba(0,0,0,0.06);
    --footer-bg: #f5f5f5;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--primary-text) !important;
    background: var(--primary-bg) !important;
    overflow-x: hidden;
    position: relative;
    transition: all 0.6s ease;
}

/* Strong overrides for light theme to ensure visibility over main.css */
body.light-theme {
    background: var(--primary-bg) !important;
    color: var(--primary-text) !important;
}

/* Theme Switcher */
.theme-switcher {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    gap: 8px;
}

.theme-toggle {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background: transparent;
    padding: 0;
}

.theme-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dark-circle {
    background: #1a472a;
    border: 2px solid #2e7d32;
}

.light-circle {
    background: #ffffff;
    border: 2px solid #e0e0e0;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.theme-toggle:hover .theme-circle {
    transform: scale(1.1);
}

.theme-toggle.active .theme-circle {
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.4);
}

/* Update existing color references to use CSS variables */

/* Animated Background Elements */
.jungle-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.jungle-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, var(--ambient-glow-1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, var(--ambient-glow-2) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, var(--ambient-glow-3) 0%, transparent 50%);
    animation: ambientGlow 8s ease-in-out infinite alternate;
    transition: all 0.6s ease;
}

@keyframes ambientGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Floating Leaves Animation */
.floating-leaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(ellipse at center, #4caf50 0%, #2e7d32 70%, #1b5e20 100%);
    border-radius: 0 100% 0 100%;
    animation: float 15s infinite linear;
    opacity: 0.6;
}

.leaf:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 20s; }
.leaf:nth-child(2) { left: 10%; animation-delay: 2s; animation-duration: 18s; }
.leaf:nth-child(3) { left: 85%; animation-delay: 4s; animation-duration: 22s; }
.leaf:nth-child(4) { left: 90%; animation-delay: 6s; animation-duration: 16s; }
.leaf:nth-child(5) { left: 15%; animation-delay: 8s; animation-duration: 24s; }
.leaf:nth-child(6) { left: 80%; animation-delay: 10s; animation-duration: 19s; }
.leaf:nth-child(7) { left: 8%; animation-delay: 12s; animation-duration: 21s; }
.leaf:nth-child(8) { left: 92%; animation-delay: 14s; animation-duration: 17s; }

@keyframes float {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Vine Border Animation */
.vine-border {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.vine-border::before,
.vine-border::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        #2e7d32 20%, 
        #4caf50 40%, 
        #66bb6a 60%, 
        #4caf50 80%, 
        transparent 100%);
    animation: vineGrow 3s ease-out forwards;
}

.vine-border::before {
    left: 15px;
}

.vine-border::after {
    right: 15px;
    animation-delay: 1s;
}

@keyframes vineGrow {
    0% { height: 0; }
    100% { height: 100%; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 61, 46, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(76, 175, 80, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(27, 94, 32, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 50%, #2e7d32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #c8e6c9;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #81c784;
    text-shadow: 0 0 10px rgba(129, 199, 132, 0.5);
}

/* Language Switcher */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    display: flex;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 20px;
    padding: 2px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.lang-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    border-radius: 18px;
    color: #c8e6c9;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.lang-btn:hover:not(.active) {
    background: rgba(76, 175, 80, 0.2);
    color: #81c784;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: scale(0.8); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 50%, #81c784 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 20px rgba(76, 175, 80, 0.3);
    animation: titleFloat 4s ease-in-out infinite alternate;
}

@keyframes titleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

.hero .subtitle {
    font-size: 1.4rem;
    color: #c8e6c9;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(76, 175, 80, 0.2);
}

.artist-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 2rem auto;
    border: 4px solid transparent;
    background: linear-gradient(135deg, #4caf50, #2e7d32) padding-box,
                linear-gradient(135deg, #66bb6a, #4caf50, #2e7d32) border-box;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3),
                0 0 20px rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
    animation: photoGlow 3s ease-in-out infinite alternate;
}

@keyframes photoGlow {
    0% { box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3), 0 0 20px rgba(76, 175, 80, 0.2); }
    100% { box-shadow: 0 15px 40px rgba(76, 175, 80, 0.5), 0 0 30px rgba(76, 175, 80, 0.4); }
}

.artist-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.5),
                0 0 40px rgba(76, 175, 80, 0.4);
}

/* Featured Artwork in Hero */
.featured-artwork {
    margin: 2rem auto;
    max-width: 250px;
    text-align: center;
}

.hero-artwork {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(135deg, #1a3d2e, #2d5a4a) padding-box,
                linear-gradient(135deg, #66bb6a, #4caf50, #2e7d32) border-box;
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.4),
                0 0 30px rgba(76, 175, 80, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: artworkFloat 4s ease-in-out infinite alternate;
    object-fit: cover;
}

@keyframes artworkFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

.hero-artwork:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(76, 175, 80, 0.4),
                0 0 40px rgba(76, 175, 80, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: rgba(76, 175, 80, 0.1);
    color: var(--accent-color);
    border: 2px solid var(--card-border);
}

.btn-secondary:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.5);
    color: #81c784;
    transform: translateY(-2px);
}

/* Paint Splash Animation */
.paint-splash {
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.1;
    animation: splash 8s ease-in-out infinite;
}

.paint-splash:nth-child(1) {
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, #4caf50 0%, transparent 70%);
    animation-delay: 0s;
}

.paint-splash:nth-child(2) {
    top: 60%;
    right: 10%;
    background: radial-gradient(circle, #66bb6a 0%, transparent 70%);
    animation-delay: 2s;
}

.paint-splash:nth-child(3) {
    bottom: 20%;
    left: 30%;
    background: radial-gradient(circle, #2e7d32 0%, transparent 70%);
    animation-delay: 4s;
}

@keyframes splash {
    0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.3; }
}

/* Section Styling */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #a5d6a7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Styles */
.gallery {
    padding: 100px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Large screens - 4 items per row */
@media (min-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1600px;
        justify-content: center;
    }
}

/* Medium-large screens - 3 items per row */
@media (min-width: 1100px) and (max-width: 1399px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        justify-content: center;
    }
}

/* Medium screens - 2 items per row */
@media (min-width: 769px) and (max-width: 1099px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        justify-content: center;
    }
}

.gallery-item {
    background: rgba(76, 175, 80, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 1px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

/* Gallery Loading and Error States */
.gallery-loading,
.gallery-error {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    font-size: 1.2rem;
    color: var(--text-color);
    background: rgba(76, 175, 80, 0.05);
    border-radius: 15px;
    margin: 2rem 0;
    padding: 2rem;
    text-align: center;
}

.gallery-loading::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

.gallery-error {
    background: rgba(255, 87, 51, 0.05);
    border: 1px solid rgba(255, 87, 51, 0.1);
    color: #ff5733;
}

.retry-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.retry-button:hover {
    background: #45a049;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Image Placeholder Styles */
.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: rgba(76, 175, 80, 0.05);
    color: var(--text-color);
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
}

.image-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: rgba(76, 175, 80, 0.5);
}

.image-placeholder span {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.image-placeholder small {
    opacity: 0.7;
    font-size: 0.8rem;
}

/* Pricing Information Styles */
.pricing-info {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.15);
}

.price-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.shipping-included {
    color: #666;
    font-style: italic;
}

.canvas-note {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #555;
    font-size: 0.85rem;
}

.canvas-note i {
    color: var(--primary-color);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(27, 94, 32, 0.2);
    border-color: rgba(76, 175, 80, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-info {
    padding: 1.5rem;
}

.gallery-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #c8e6c9;
}

.gallery-item p {
    color: #a5d6a7;
    margin-bottom: 1rem;
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .gallery-item {
        max-width: 100%;
    }
    
    .featured-artwork {
        max-width: 180px;
    }
    
    .hero-artwork {
        width: 150px;
        height: 150px;
    }
    
    .artist-photo {
        width: 150px;
        height: 150px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .gallery-item {
        max-width: 100%;
    }
    
    .featured-artwork {
        max-width: 150px;
    }
    
    .hero-artwork {
        width: 120px;
        height: 120px;
    }
}

/* Contact Section */
.contact {
    background: rgba(76, 175, 80, 0.05);
    border-top: 1px solid rgba(76, 175, 80, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #c8e6c9;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    color: #a5d6a7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 94, 32, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
}

.contact-method i {
    font-size: 1.5rem;
    color: #4caf50;
    width: 30px;
    text-align: center;
}

.contact-method h4 {
    color: #c8e6c9;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.contact-method p {
    color: #a5d6a7;
    margin: 0;
}

.contact-method a {
    color: #81c784;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #66bb6a;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 50%;
    color: #4caf50;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.4);
    color: #66bb6a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.2);
}

.contact-form {
    background: rgba(76, 175, 80, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.contact-form h3 {
    color: #c8e6c9;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 8px;
    background: rgba(76, 175, 80, 0.05);
    color: #c8e6c9;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #81c784;
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(76, 175, 80, 0.5);
    background: rgba(76, 175, 80, 0.08);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-text .lead {
    font-size: 1.2rem;
    color: #81c784;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.7;
}

.about-text p {
    color: #a5d6a7;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-image {
    text-align: center;
}

.about-image .artist-photo {
    width: 300px;
    height: 400px;
    border-radius: 15px;
    border: 4px solid transparent;
    background: linear-gradient(135deg, #4caf50, #2e7d32) padding-box,
                linear-gradient(135deg, #66bb6a, #4caf50, #2e7d32) border-box;
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    object-fit: cover;
}

.about-image .artist-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.4);
}

/* Footer */
.footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--card-border);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-info h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.footer-info p {
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.shipping-partner {
    margin-top: 1rem;
}

.shipping-partner p {
    color: var(--light-accent);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.dhl-logo {
    height: 30px;
    width: auto;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

.dhl-logo:hover {
    transform: scale(1.05);
}

.footer-legal {
    text-align: center;
}

.legal-links {
    margin-bottom: 1rem;
}

.legal-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--secondary-text);
}

.separator {
    color: var(--light-accent);
    margin: 0 0.5rem;
}

.important-notice p {
    color: #ffcc02;
    font-size: 0.8rem;
    margin: 0.2rem 0;
}

.important-notice small {
    color: var(--light-accent);
}

.footer-links {
    text-align: right;
}

.footer-links p {
    color: var(--light-accent);
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.footer-links a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-text);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image .artist-photo {
        width: 250px;
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-legal,
    .footer-links {
        text-align: center;
    }
    
    .legal-links {
        margin-bottom: 1.5rem;
    }
    
    .legal-links a {
        display: inline-block;
        margin: 0.2rem 0.5rem;
    }
    
    .separator {
        display: none;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .about-image .artist-photo {
        width: 200px;
        height: 250px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}