/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #000 !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000 !important;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Professional Page Transitions (Similar to React Router + Framer Motion) */
.page-transition {
    opacity: 1;
    transition: opacity 420ms cubic-bezier(0.4, 0, 0.2, 1);
    background: #000 !important;
    min-height: 100vh;
    width: 100%;
}

/* Hero section should not be affected by page transitions */
.hero {
    background: transparent !important;
    z-index: 1;
}

/* Ensure hero background is always visible */
.hero .hero-background,
.hero .hero-bg-image {
    z-index: -2 !important;
    background: transparent !important;
}

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

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

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

.nav-logo a {
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

.logo-image {
    height: auto;
    width: auto;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

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

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

.nav-cta {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #667eea;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: calc(100vh - 85px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: transparent !important;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: -5%;
    left: -5%;
    animation: slowPan 60s ease-in-out infinite;
    z-index: -2;
}

@keyframes slowPan {
    0% {
        transform: scale(1) translate(0, 0);
    }
    25% {
        transform: scale(1.05) translate(-2.5%, -2.5%);
    }
    50% {
        transform: scale(1.05) translate(-5%, -5%);
    }
    75% {
        transform: scale(1.05) translate(-2.5%, -2.5%);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Page Headers - Removed for cleaner design */

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #000000;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    /* No size changes on hover */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 3/2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    display: none;
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

/* Special Gallery Item - Black & White to Color on Hover */
.special-item {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    z-index: 10;
    aspect-ratio: 3/2;
    border-radius: 0;
}

.special-item .bw-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    filter: grayscale(100%);
}

.special-item .color-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.special-item:hover {
    /* No size changes on hover - only color transition */
}

.special-item:hover .bw-image {
    opacity: 0;
}

.special-item:hover .color-image {
    opacity: 1;
}

.special-item:hover .gallery-overlay {
    display: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.lightbox-close {
    position: fixed;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0 !important;
    border: none;
    outline: none;
    /* Ensure portrait images don't overlap with controls */
    margin-top: 80px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* Hide all navigation arrows */
.lightbox-nav {
    display: none !important;
}

/* Clickable areas for navigation - completely invisible */
.lightbox-nav-area {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    height: 600px !important;
    width: 100px;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-nav-area.prev {
    left: -50px;
}

.lightbox-nav-area.next {
    right: -50px;
}

/* Lightbox Controls */
.lightbox-controls {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2002;
    /* Ensure buttons stay centered and evenly spaced */
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    /* Prevent button separation by ensuring consistent width */
    min-width: 280px;
}

.lightbox-frame-btn {
    background: transparent;
    color: #888888;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-frame-btn:hover {
    color: white;
    transform: scale(1.1);
}

.lightbox-frame-btn.active {
    color: white;
}

.lightbox-matte-btn {
    background: transparent;
    color: #888888;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-matte-btn:hover {
    color: white;
}

.lightbox-matte-btn.active {
    color: white;
}

.lightbox-share-btn {
    background: transparent;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-share-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.lightbox-share-btn.active {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.lightbox-download-btn {
    background: transparent;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-download-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.lightbox-download-btn.active {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.lightbox-color-toggle-btn {
    background: transparent;
    color: #888888;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-color-toggle-btn:hover {
    color: white;
    transform: scale(1.1);
}

.lightbox-color-toggle-btn.active {
    color: white;
}

/* Modern Tooltip Styles */
.lightbox-frame-btn::after,
.lightbox-matte-btn::after,
.lightbox-share-btn::after,
.lightbox-download-btn::after,
.lightbox-color-toggle-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1002;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.lightbox-frame-btn:hover::after,
.lightbox-matte-btn:hover::after,
.lightbox-share-btn:hover::after,
.lightbox-download-btn:hover::after,
.lightbox-color-toggle-btn:hover::after {
    opacity: 1;
}

/* Frame Preview Styles */
.lightbox-content.framed {
    background: transparent;
    padding: 40px;
    border-radius: 10px;
    /* Ensure minimum spacing from buttons on smaller screens */
    margin-top: 20px;
}

.lightbox-content.framed .lightbox-image {
    border: 20px solid #2c2c2c;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: white;
    padding: 20px;
    max-width: 90vw;
    max-height: 80vh;
    position: relative;
    /* Remove extra margin for framed images since frame provides spacing */
    margin-top: 0;
}

.lightbox-content.framed.white-frame .lightbox-image {
    border-color: #f5f5f5;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 20px solid #f5f5f5;
    position: relative;
}

.lightbox-content.framed.white-frame .lightbox-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* Wood Frame Styles */
.lightbox-content.framed.wood-frame .lightbox-image {
    border: 20px solid;
    border-image: linear-gradient(45deg, #654321, #8B4513, #A0522D, #654321, #8B4513, #A0522D) 1;
    border-image-slice: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: white;
    padding: 20px;
    position: relative;
}

.lightbox-content.framed.wood-frame .lightbox-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(101, 67, 33, 0.15) 3px,
            rgba(101, 67, 33, 0.15) 5px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(139, 69, 19, 0.12) 2px,
            rgba(139, 69, 19, 0.12) 4px
        );
    pointer-events: none;
    z-index: -1;
}

/* Gold Frame Styles */
.lightbox-content.framed.gold-frame .lightbox-image {
    border: 20px solid;
    border-image: linear-gradient(45deg, #DAA520, #B8860B, #CD853F, #DAA520, #B8860B, #CD853F) 1;
    border-image-slice: 1;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(218, 165, 32, 0.5),
        inset 0 0 20px rgba(218, 165, 32, 0.2);
    background: white;
    padding: 20px;
    position: relative;
}

.lightbox-content.framed.gold-frame .lightbox-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        /* Base wood texture */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(139, 69, 19, 0.1) 3px,
            rgba(139, 69, 19, 0.1) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(160, 82, 45, 0.1) 2px,
            rgba(160, 82, 45, 0.1) 3px
        ),
        /* Gold leaf overlay */
        linear-gradient(45deg, 
            rgba(218, 165, 32, 0.4) 0%, 
            rgba(184, 134, 11, 0.6) 25%, 
            rgba(205, 133, 63, 0.4) 50%, 
            rgba(218, 165, 32, 0.6) 75%, 
            rgba(184, 134, 11, 0.4) 100%
        ),
        /* Ornate pattern overlay */
        radial-gradient(
            circle at 20% 20%,
            rgba(218, 165, 32, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(184, 134, 11, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(205, 133, 63, 0.2) 0%,
            transparent 70%
        );
    pointer-events: none;
    z-index: -1;
}

/* Signature overlay for framed images */
.lightbox-image-container {
    position: relative;
    display: inline-block;
}

.lightbox-signature {
    position: absolute;
    bottom: 19px;
    right: 20px;
    width: 68px;
    height: 34px;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-content.framed .lightbox-signature {
    opacity: 1;
}

.signature-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Double matte signature positioning */
.lightbox-content.framed.double-matte .lightbox-signature {
    bottom: 25px;
    right: 30px;
    width: 88px;
    height: 44px;
}

/* Double Matte Styles */
.lightbox-content.framed.double-matte .lightbox-image {
    padding: 40px;
}

.lightbox-content.framed.double-matte.white-frame .lightbox-image::after {
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Double Matte Wood Frame Styles */
.lightbox-content.framed.double-matte.wood-frame .lightbox-image {
    padding: 40px;
    border: 20px solid;
    border-image: linear-gradient(45deg, #654321, #8B4513, #A0522D, #654321, #8B4513, #A0522D) 1;
    border-image-slice: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: white;
    position: relative;
}

.lightbox-content.framed.double-matte.wood-frame .lightbox-image::before {
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
}

/* Double Matte Gold Frame Styles */
.lightbox-content.framed.double-matte.gold-frame .lightbox-image {
    padding: 40px;
    border: 20px solid;
    border-image: linear-gradient(45deg, #DAA520, #B8860B, #CD853F, #DAA520, #B8860B, #CD853F) 1;
    border-image-slice: 1;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(218, 165, 32, 0.5),
        inset 0 0 20px rgba(218, 165, 32, 0.2);
    background: white;
    position: relative;
}

.lightbox-content.framed.double-matte.gold-frame .lightbox-image::before {
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background: 
        /* Base wood texture */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(139, 69, 19, 0.1) 3px,
            rgba(139, 69, 19, 0.1) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(160, 82, 45, 0.1) 2px,
            rgba(160, 82, 45, 0.1) 3px
        ),
        /* Gold leaf overlay */
        linear-gradient(45deg, 
            rgba(218, 165, 32, 0.4) 0%, 
            rgba(184, 134, 11, 0.6) 25%, 
            rgba(205, 133, 63, 0.4) 50%, 
            rgba(218, 165, 32, 0.6) 75%, 
            rgba(184, 134, 11, 0.4) 100%
        ),
        /* Ornate pattern overlay */
        radial-gradient(
            circle at 20% 20%,
            rgba(218, 165, 32, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(184, 134, 11, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(205, 133, 63, 0.2) 0%,
            transparent 70%
        );
}

/* Wider clickable areas on mobile */
@media (max-width: 768px) {
    .lightbox-nav-area {
        width: 120px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        height: 600px !important;
    }
    
    .lightbox-controls {
        top: 10px;
        right: 60px;
        /* Ensure buttons stay aligned on mobile */
        gap: 8px;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .lightbox-frame-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox-matte-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox-download-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox-content.framed {
        padding: 20px;
        background: transparent;
        /* Increase top margin on smaller screens for better button separation */
        margin-top: 30px;
    }
    
    .lightbox-content.framed .lightbox-image {
        max-width: 90vw;
        max-height: 80vh;
    }
    
    /* Mobile Wood Frame Styles - Removed fixed pixel overrides for proportional scaling */
    
    /* Mobile Gold Frame Styles - Removed fixed pixel overrides for proportional scaling */
    
    /* Mobile signature positioning - Removed fixed pixel overrides for proportional scaling */
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #000000;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.about-image {
    margin-bottom: 15px;
}

.about-header {
    text-align: center;
    margin-bottom: 15px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-secondary {
    margin: 15px 0;
}

.about-img-secondary {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #667eea;
}

/* Slideshow Styles */
.slideshow-container {
    margin: 15px 0;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
}

/* Video Container Styles */
.video-container {
    margin: 15px 0;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.art-preview-video {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #000;
    display: block; /* Ensure it's always visible */
}

/* Mobile video controls - show controls on mobile devices */
@media (max-width: 768px) {
    .art-preview-video {
        /* Force controls to show on mobile */
        -webkit-playsinline: true;
        playsinline: true;
        /* Prevent fullscreen on mobile */
        -webkit-presentation-mode: inline;
        presentation-mode: inline;
    }
    
    /* Center social icons on mobile */
    .social-links {
        justify-content: center;
        text-align: center;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 80px 0 30px;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo-img {
    height: auto;
    width: auto;
    max-height: 55px;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-tagline {
    font-size: 1.05rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #667eea;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #b0b0b0;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.5;
}

.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.footer-bottom p {
    color: #888888;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #000000;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-headshot {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.headshot-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.headshot-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-out;
}

.contact-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}

.icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.icon-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #000;
}

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.contact-text p {
    color: #666;
    margin: 0.3rem 0;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    font-size: 24px;
    text-decoration: none;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: default;
}

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

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

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
    width: 100%;
    max-width: 600px;
}

.contact-form-container.expanded {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.expand-form-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
    max-width: 300px;
}

.expand-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.expand-form-btn.expanded {
    display: none;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #666;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #999;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: #888;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.char-count {
    font-size: 0.85rem;
    color: #666;
    text-align: right;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: black;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 10px;
        margin-left: 20px;
    }
    
    .dropdown-item {
        padding: 8px 0;
        border-bottom: none;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .dropdown-toggle::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem 1rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Ensure video is visible on mobile */
    .video-container {
        display: block !important;
        margin: 15px 0;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .art-preview-video {
        display: block !important;
        width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        background: #000;
    }

    .lightbox-nav {
        padding: 10px;
        font-size: 18px;
    }

    .lightbox-close {
        right: 20px;
        font-size: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .contact-form-container {
        padding: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Success/Error Messages */
.message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Share Modal Styles */
.share-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.share-modal-content {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: 5% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.share-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #888;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-modal-close:hover {
    color: #667eea;
    transform: scale(1.1);
}

.share-modal h3 {
    margin: 0 0 30px 0;
    font-size: 2rem;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

/* Share Preview Styles */
.share-preview {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.share-preview h4 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.preview-image-container {
    position: relative;
    width: 120px;
    height: 80px;
    border: 2px solid rgba(102, 126, 234, 0.5);
    border-radius: 8px;
    background: white;
    padding: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.preview-signature {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 20px;
    height: 10px;
    opacity: 0.8;
    pointer-events: none;
}

.preview-signature .signature-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preview-info {
    flex: 1;
}

.preview-config,
.preview-link {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #bbb;
}

.preview-config {
    font-weight: 600;
    color: white;
}

.preview-link {
    word-break: break-all;
    color: #667eea;
    text-decoration: none;
}

.preview-link:hover {
    color: #764ba2;
}

.share-options {
    margin-bottom: 40px;
}

.share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.share-options h4 {
    margin: 0;
    font-size: 1.3rem;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Toggle Switch Styles */
.config-toggle {
    display: flex;
    align-items: center;
}

.toggle-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #bbb;
    gap: 10px;
}

.toggle-label input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 44px;
    height: 24px;
    background: #444;
    border-radius: 12px;
    transition: background 0.3s ease;
    border: 1px solid #555;
}

.toggle-slider:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.toggle-label input[type="checkbox"]:checked + .toggle-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: rgba(102, 126, 234, 0.5);
}

.toggle-label input[type="checkbox"]:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.toggle-text {
    font-weight: 500;
    color: white;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    min-height: 40px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.share-btn.facebook {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}



.share-btn.twitter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.share-btn.pinterest {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.share-btn.email {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.share-btn.sms {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.share-btn.download {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
    scale: 1.05;
}

.share-btn:active {
    transform: translateY(0);
    scale: 0.98;
}

.pricing-request {
    border-top: 2px solid rgba(102, 126, 234, 0.3);
    padding-top: 30px;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.pricing-request h4 {
    margin: 0;
    font-size: 1.3rem;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.email-artist-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.email-artist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.expand-pricing-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.expand-pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    filter: brightness(1.1);
}

.pricing-form-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.pricing-form-container.expanded {
    max-height: 1000px;
}

.current-config {
    background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: #bbb;
    border: 1px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.current-config span {
    font-weight: 600;
    color: white;
}

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

.pricing-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-form label {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.pricing-form input,
.pricing-form select,
.pricing-form textarea {
    padding: 12px 15px;
    border: 2px solid #444;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #2a2a2a;
    color: white;
}

.pricing-form input:focus,
.pricing-form select:focus,
.pricing-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    background: #333;
}

.pricing-form input::placeholder,
.pricing-form textarea::placeholder {
    color: #888;
}

.pricing-form select option {
    background: #2a2a2a;
    color: white;
}

.pricing-form textarea {
    resize: vertical;
    min-height: 100px;
}

.other-size,
.other-style {
    margin-top: 10px;
}

.submit-pricing-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.submit-pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .share-modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
} 

/* Contact Page Specific Styles */
.contact-section {
    color: #888888 !important; /* Brighter grey for better readability */
}

.contact-section h2,
.contact-section h3 {
    color: #aaaaaa !important; /* Brighter grey for titles */
}

.contact-section p {
    color: #888888 !important; /* Brighter grey for paragraph text */
}

.contact-text h3 {
    color: #aaaaaa !important; /* Brighter grey for card titles */
}

.contact-text p {
    color: #888888 !important; /* Brighter grey for card text */
}

/* About Page Specific Styles */
.about-section {
    color: #888888 !important; /* Brighter grey for better readability */
}

.about-section h2,
.about-section h3 {
    color: #aaaaaa !important; /* Brighter grey for titles */
}

.about-section p {
    color: #888888 !important; /* Brighter grey for paragraph text */
}

.about-text h2,
.about-text h3 {
    color: #aaaaaa !important; /* Brighter grey for about text titles */
}

.about-text p {
    color: #888888 !important; /* Brighter grey for about text paragraphs */
}

/* Brighter Contact Shayne Link */
.contact-shayne-link {
    color: #a855f7 !important; /* Bright purple for better visibility on black */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-shayne-link:hover {
    color: #c084fc !important; /* Even brighter purple on hover */
}

/* Frame Preview Styles */ 