/* Pamina Stewart Website Styles */

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf9f7;
}

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

/* Main Header */
.main-header {
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.main-title {
    font-size: 2.625rem;
    font-weight: 300;
    color: #2F4F4F;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Main Content Layout */
.main-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Sidebar Container */
.left-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Menu Bar */
.menu-bar {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px 0;
}

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

.menu-item {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    color: #555;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    cursor: pointer;
}

.menu-item:hover,
.menu-item.active {
    background-color: #f5f4f2;
    color: #8B7355;
    border-left-color: #8B7355;
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Instagram Icon */
.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-icon svg {
    color: white;
}

/* Patreon Icon */
.patreon-icon {
    background-color: #FF424D;
}

.patreon-icon svg {
    color: white;
}

/* ========================================= */
/* DYNAMIC CONTENT AREA STYLES */
/* ========================================= */

.dynamic-content-area {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-height: 600px;
    position: relative;
}

/* Loading and Error States */
.loading-indicator,
.error-message {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
    color: #666;
    font-size: 1.1rem;
}

.error-message {
    color: #d32f2f;
}

/* ========================================= */
/* HOME PAGE STYLES (slideshow + artist statement) */
/* ========================================= */

/* Home page layout container */
.home-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

/* Slideshow Container */
.slideshow-container {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #fff;
}

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

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Caption Container for all slides */
.slideshow-caption-container {
    position: relative;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    min-height: 100px;
    padding: 25px 20px;
}

.caption-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.caption-slide.active {
    opacity: 1;
}

.caption-slide h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: #2F4F4F;
    line-height: 1.2;
}

.caption-slide p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

/* Slideshow Indicators */
.slideshow-indicators {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #f8f7f5;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background-color: #8B7355;
}

/* Artist Statement */
.artist-statement {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 30px;
    height: fit-content;
}

.statement-title {
    font-size: 1.8rem;
    color: #2F4F4F;
    margin-bottom: 20px;
    font-weight: 400;
    border-bottom: 2px solid #8B7355;
    padding-bottom: 10px;
}

.statement-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    text-align: left;
}

.statement-content p:last-child {
    margin-bottom: 0;
}

/* ========================================= */
/* NEWSLETTER SUBSCRIPTION STYLES */
/* ========================================= */

.newsletter-subscription {
    grid-column: 1 / -1; /* Span full width */
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 40px;
    margin-top: 30px;
    text-align: center;
}

.subscription-title {
    font-size: 1.8rem;
    color: #2F4F4F;
    margin-bottom: 15px;
    font-weight: 400;
}

.subscription-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.mailerlite-form-container {
    max-width: 400px;
    margin: 0 auto;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    gap: 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: #fff;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-right: none;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #fff;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 25px 0 0 25px;
}

.email-input:focus {
    border-color: #8B7355;
}

.email-input::placeholder {
    color: #999;
    font-style: italic;
}

.subscribe-button {
    padding: 15px 25px;
    background-color: #8B7355;
    color: white;
    border: 2px solid #8B7355;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 25px 25px 0;
    white-space: nowrap;
}

.subscribe-button:hover {
    background-color: #6d5a42;
    border-color: #6d5a42;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.subscribe-button:active {
    transform: translateY(0);
}

.privacy-notice {
    font-size: 0.9rem;
    color: #666;
    margin: 15px 0 0 0;
    font-style: italic;
}

/* Success/Error States */
.subscription-success,
.subscription-error {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-size: 1rem;
}

.subscription-success {
    background-color: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.subscription-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #f44336;
}

/* ========================================= */
/* GALLERY PAGE STYLES */
/* ========================================= */

.gallery-page {
    padding: 30px;
}

.page-title {
    font-size: 2.2rem;
    color: #2F4F4F;
    margin-bottom: 20px;
    font-weight: 400;
    border-bottom: 2px solid #8B7355;
    padding-bottom: 10px;
}

.gallery-intro {
    margin-bottom: 30px;
}

.gallery-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

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

/* Placeholder content styles */
.placeholder-content {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

.placeholder-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.placeholder-content ul {
    text-align: left;
    max-width: 400px;
    margin: 20px auto 0;
}

.placeholder-content li {
    margin-bottom: 8px;
}

/* ========================================= */
/* WALL-MOUNTED SCULPTURES GALLERY STYLES */
/* ========================================= */

/* Collection Toggle Container */
.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0 40px;
    position: relative;
}

/* Remove double margin when collection-toggle is inside toggle-container */
.toggle-container .collection-toggle {
    margin: 0;
}

/* Collection Toggle - iOS Style Segmented Control */
.collection-toggle {
    display: flex;
    justify-content: center;
    margin: 15px 0 40px;
}

.toggle-btn {
    padding: 12px 32px;
    border: none;
    background-color: #f0f0f0;
    color: #666;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.toggle-btn:first-child {
    border-radius: 25px 0 0 25px;
    border-right: 1px solid #ddd;
}

.toggle-btn:last-child {
    border-radius: 0 25px 25px 0;
}

.toggle-btn.active {
    background-color: #8B7355;
    color: white;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.3);
}

.toggle-btn:not(.active):hover {
    background-color: #e8e8e8;
    color: #8B7355;
}

/* Sub-Collection Toggle */
.sub-collection-toggle {
    display: flex;
    position: absolute;
    left: calc(50% + 150px); /* Position to the right of centered main toggle with gap */
    top: 50%;
    transform: translateY(-50%);
}

.sub-toggle-btn {
    padding: 10px 24px;
    border: none;
    background-color: #f8f8f8;
    color: #777;
    font-size: 0.9rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.sub-toggle-btn:first-child {
    border-radius: 20px 0 0 20px;
    border-right: 1px solid #ddd;
}

.sub-toggle-btn:last-child {
    border-radius: 0 20px 20px 0;
}

.sub-toggle-btn.active {
    background-color: #a68b5b;
    color: white;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(166, 139, 91, 0.3);
}

.sub-toggle-btn:not(.active):hover {
    background-color: #eeeeee;
    color: #a68b5b;
}

/* Gallery Container */
.wall-mounted-gallery {
    max-width: 1000px;
    margin: 0 auto;
}

/* Collection Info */
.collection-info {
    text-align: center;
    margin-bottom: 40px;
}

.collection-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.collection-count {
    font-size: 0.9rem;
    color: #8B7355;
    font-weight: 500;
}

/* Main Gallery Display */
.gallery-display {
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    gap: 25px;
    align-items: center;
    margin-bottom: 30px;
    min-height: 450px;
}

/* Navigation Thumbnails */
.nav-thumbnail {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.nav-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.nav-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(47, 79, 79, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-thumbnail:hover .nav-thumb-overlay {
    opacity: 1;
}

.nav-arrow {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Main Image Container */
.main-image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.5s ease;
}

.image-loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 8px;
    display: none;
}

/* Image Details */
.image-details {
    text-align: center;
    background-color: #fff;
    padding: 16px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.sculpture-title {
    font-size: 1.6rem;
    color: #2F4F4F;
    margin-bottom: 10px;
    font-weight: 400;
}

.sculpture-info {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Gallery Controls */
.gallery-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.control-btn {
    background-color: #f8f7f5;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 20px;
    color: #666;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background-color: #8B7355;
    color: white;
    border-color: #8B7355;
}

.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.control-btn:disabled:hover {
    background-color: #f8f7f5;
    color: #666;
    border-color: #ddd;
}

.image-counter {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Loading States for Gallery */
.collection-loading,
.gallery-error {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    font-size: 1.1rem;
}

.collection-loading {
    color: #666;
}

.gallery-error {
    color: #d32f2f;
}

/* ========================================= */
/* CONTENT PAGE STYLES (About, Contact) */
/* ========================================= */

.content-page {
    padding: 30px;
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-top: 20px;
}

.artist-photo {
    text-align: center;
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: #f0f0f0;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 8px;
}

/* Artist Photo Image Styling */
.artist-photo-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.artist-photo-img:hover {
    transform: scale(1.02);
}

.artist-bio {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ========================================= */
/* ABOUT SECTION STYLES (for project pages) */
/* ========================================= */

.about-content-container {
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding: 0 40px 40px 40px;
}

.about-title {
    font-size: 2rem;
    color: #2F4F4F;
    margin-bottom: 25px;
    padding-top: 0;
    font-weight: 400;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ========================================= */
/* CV PANEL STYLES */
/* ========================================= */

.cv-panel {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 600px;
    overflow: hidden;
    position: relative;
}

.cv-content {
    height: 100%;
    overflow-y: auto;
    padding: 25px;
    scrollbar-width: thin;
    scrollbar-color: #8B7355 #f0f0f0;
}

.cv-content::-webkit-scrollbar {
    width: 8px;
}

.cv-content::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    border-radius: 4px;
}

.cv-content::-webkit-scrollbar-thumb {
    background-color: #8B7355;
    border-radius: 4px;
}

.cv-content::-webkit-scrollbar-thumb:hover {
    background-color: #6d5a42;
}

.cv-content h3 {
    font-size: 1.5rem;
    color: #2F4F4F;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
    border-bottom: 2px solid #8B7355;
    padding-bottom: 10px;
}

.cv-section {
    margin-bottom: 30px;
}

.cv-section:last-child {
    margin-bottom: 0;
}

.cv-section h4 {
    font-size: 1.2rem;
    color: #2F4F4F;
    margin-bottom: 15px;
    font-weight: 500;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 5px;
}

.cv-list {
    list-style: none;
    padding-left: 0;
}

.cv-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    padding-left: 15px;
    position: relative;
}

.cv-list li::before {
    content: "•";
    color: #8B7355;
    position: absolute;
    left: 0;
    top: 0;
}

.cv-list li strong {
    color: #2F4F4F;
    font-weight: 600;
}

.exhibition-year {
    margin-bottom: 20px;
}

.exhibition-year h5 {
    font-size: 1rem;
    color: #8B7355;
    margin-bottom: 10px;
    font-weight: 600;
    background-color: #f8f7f5;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.exhibition-year .cv-list {
    margin-left: 15px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.contact-info,
.contact-form-placeholder {
    padding: 20px;
}

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

@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 180px 1fr;
        gap: 30px;
    }
    
    .home-content {
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }
    
    .main-title {
        font-size: 2.25rem;
    }
    
    /* Gallery responsive adjustments */
    .gallery-display {
        grid-template-columns: 100px 1fr 100px;
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .home-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .left-sidebar {
        order: -1;
    }
    
    .menu-list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .menu-item {
        padding: 10px 20px;
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: 20px;
    }
    
    .menu-item:hover,
    .menu-item.active {
        background-color: #8B7355;
        color: white;
        border-bottom-color: #2F4F4F;
    }
    
    /* Social icons remain centered on tablet */
    .social-media-icons {
        justify-content: center;
        padding: 20px 0;
    }
    
    /* Gallery tablet layout */
    .gallery-display {
        grid-template-columns: 80px 1fr 80px;
        gap: 15px;
        min-height: 350px;
    }
    
    /* About page responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .artist-photo {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* CV Panel responsive */
    .cv-panel {
        height: 400px;
    }
    
    /* Contact page responsive */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Newsletter subscription responsive */
    .newsletter-subscription {
        padding: 30px 20px;
    }
    
    .form-group {
        flex-direction: column;
        border-radius: 8px;
    }
    
    .email-input {
        border-radius: 8px 8px 0 0;
        border-right: 2px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .subscribe-button {
        border-radius: 0 0 8px 8px;
        border-top: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .main-title {
        font-size: 1.875rem;
        letter-spacing: 2px;
    }
    
    .gallery-page,
    .content-page {
        padding: 20px;
    }
    
    .page-title,
    .statement-title {
        font-size: 1.5rem;
    }
    
    .menu-list {
        flex-direction: column;
        align-items: center;
    }
    
    .slideshow-caption-container {
        min-height: 85px;
        padding: 20px 15px;
    }
    
    .caption-slide {
        padding: 20px 15px;
    }
    
    .caption-slide h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .caption-slide p {
        font-size: 1rem;
    }
    
    /* Social icons remain centered on mobile */

    /* Toggle positioning adjustments for mobile */
    .toggle-container {
        flex-direction: column;
        gap: 15px;
    }

    .sub-collection-toggle {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        justify-content: center;
    }
    .social-media-icons {
        justify-content: center;
        padding: 15px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Gallery mobile layout - stack vertically */
    .gallery-display {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
    }
    
    .nav-thumbnail {
        display: none; /* Hide thumbnails on mobile for cleaner experience */
    }
    
    /* Toggle buttons mobile adjustment */
    .toggle-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .sculpture-title {
        font-size: 1.4rem;
    }
    
    .gallery-controls {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .image-counter {
        order: -1;
    }
    
    /* CV Panel mobile adjustments */
    .cv-panel {
        height: 350px;
    }
    
    .cv-content {
        padding: 20px;
    }
    
    .cv-content h3 {
        font-size: 1.3rem;
    }
    
    .cv-section h4 {
        font-size: 1.1rem;
    }
    
    /* Newsletter subscription mobile */
    .newsletter-subscription {
        padding: 25px 15px;
    }
    
    .subscription-title {
        font-size: 1.5rem;
    }
    
    .subscription-description {
        font-size: 1rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .email-input,
    .subscribe-button {
        border-radius: 8px;
        border: 2px solid #e0e0e0;
    }
    
    .subscribe-button {
        margin-top: 10px;
        border-color: #8B7355;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .gallery-page,
    .content-page,
    .artist-statement {
        padding: 15px;
    }
    
    .statement-content p {
        font-size: 0.9rem;
    }
    
    .slideshow-caption-container {
        min-height: 75px;
        padding: 18px 12px;
    }
    
    .caption-slide {
        padding: 18px 12px;
    }
    
    .caption-slide h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .caption-slide p {
        font-size: 0.95rem;
    }
    
    .social-media-icons {
        gap: 12px;
        padding: 12px 0;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    /* Gallery mobile optimizations */
    .toggle-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .sculpture-title {
        font-size: 1.2rem;
    }
    
    .sculpture-info {
        font-size: 0.9rem;
    }
    
    .control-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    /* CV Panel small mobile */
    .cv-panel {
        height: 300px;
    }
    
    .cv-content {
        padding: 15px;
    }
    
    .cv-content h3 {
        font-size: 1.2rem;
    }
    
    .cv-section h4 {
        font-size: 1rem;
    }
    
    .cv-list li {
        font-size: 0.85rem;
    }
    
    /* Newsletter subscription small mobile */
    .newsletter-subscription {
        padding: 20px 12px;
    }
    
    .subscription-title {
        font-size: 1.3rem;
    }
    
    .subscription-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .email-input,
    .subscribe-button {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}