@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;700&display=swap');

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

:root {
    --primary: #333333;
    --accent: #555555;
    --light: #f5f5f5;
    --dark: #1a1a1a;
    --overlay: rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #ffffff;
    color: var(--primary);
    line-height: 1.6;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-toggle:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.search-toggle.active {
    background: #333;
    color: white;
    border-color: #333;
}

.search-bar {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 350px;
    margin-top: 10px;
    z-index: 1001;
}

.search-bar.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.search-input {
    width: 100%;
    padding: 15px 45px 15px 20px;
    border: none;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
}

.search-clear {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.search-clear:hover {
    color: #333;
}

.search-results-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    margin-top: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
}

.search-results-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.search-results-header {
    padding: 15px 20px;
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.search-result-item:hover {
    background: #f9f9f9;
}

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

.search-result-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.search-result-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-result-title {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.search-result-artist {
    font-size: 0.85rem;
    color: #666;
}

.search-result-type {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-results-more {
    padding: 15px 20px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.search-no-results {
    padding: 40px 20px;
    text-align: center;
}

.search-no-results p {
    color: #666;
    font-size: 1rem;
}

.menu-wrapper {
    position: relative;
}

.menu-btn {
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: #1a1a1a;
}

.menu-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.menu-btn.active .menu-arrow {
    transform: rotate(180deg);
}

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 220px;
    padding: 15px 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    flex-direction: column;
    gap: 0;
    z-index: 1000;
    margin-top: 10px;
}

.nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease;
}

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

.nav-links li {
    width: 100%;
}

.nav-links a {
    display: block;
    padding: 12px 25px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: var(--light);
    color: var(--accent);
}

.no-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 15px;
    margin-top: 30px;
}

.no-results.show {
    display: block;
}

.no-results p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

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

header {
    background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 100%);
    color: white;
    padding: 150px 0 60px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.header-text {
    text-align: center;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.header-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
}

main {
    padding: 40px 0;
    min-height: 70vh;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

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

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

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

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

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, var(--overlay));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.gallery-item .overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-item .overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-item.hidden {
    display: none;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 5px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

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

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #888888;
}

.highlights {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0 80px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #666666;
    margin: 15px auto 0;
}

.artist-spotlight {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.artist-info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.artist-image {
    flex-shrink: 0;
}

.artist-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
}

.artist-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.artist-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.artist-bio {
    color: #666;
    line-height: 1.7;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 60px 30px 25px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #333333;
    color: white;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

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

.indicator.active {
    background: #333333;
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--primary);
}

.section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: -35px;
    margin-bottom: 50px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.portfolio-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.portfolio-card::after {
    content: 'View Portfolio';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover::after {
    opacity: 1;
}

.portfolio-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: white;
    padding: 60px 20px 20px;
}

.portfolio-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.portfolio-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.graphic-design {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.gd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gd-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.gd-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gd-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gd-card:hover img {
    transform: scale(1.08);
}

.gd-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: white;
    padding: 60px 20px 20px;
}

.gd-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gd-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gd-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gd-card img {
        height: 200px;
    }
}

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

.artworks-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
}

.artwork-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.artwork-card.large {
    grid-row: span 2;
}

.artwork-card img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artwork-card:hover img {
    transform: scale(1.05);
}

.artwork-card.large img {
    min-height: 625px;
}

.artwork-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 50px 25px 20px;
}

.artwork-price {
    display: inline-block;
    background: var(--accent);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.artwork-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.artwork-details p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.illustrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.illust-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.illust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.illust-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.illust-details {
    padding: 20px;
}

.illust-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 5px;
}

.illust-artist {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 8px;
}

.illust-desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

.illust-medium {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 12px;
}

.illust-price {
    display: inline-block;
    background: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .illustrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .illust-card img {
        height: 200px;
    }
}

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

.installation-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.installation-main {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.installation-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.installation-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 80px 30px 30px;
}

.installation-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.installation-overlay p {
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.installation-artist {
    color: var(--accent);
    font-weight: 600;
}

.installation-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.installation-thumb {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.installation-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.installation-thumb:hover img {
    transform: scale(1.1);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.event-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.event-date {
    flex-shrink: 0;
    background: #444444;
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
}

.event-day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.event-location {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.event-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.event-btn {
    flex-shrink: 0;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: center;
}

.event-btn:hover {
    background: var(--primary);
    color: white;
}

.contact {
    background: var(--light);
    padding: 80px 0;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.contact-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #333333;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

footer {
    background: #2a2a2a;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

footer p {
    opacity: 0.8;
}

.register {
    background: #f5f5f5;
}

.register-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #555555;
    box-shadow: 0 0 0 3px rgba(85, 85, 85, 0.1);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    text-transform: none;
    font-size: 0.95rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #555555;
    flex-shrink: 0;
    margin-top: 2px;
}

.submit-btn {
    padding: 16px 40px;
    background: #333333;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: block;
}

.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.form-success p {
    color: #666;
    font-size: 1.1rem;
}

.form-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    margin-top: 10px;
}

.profile-upload-area {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
    border: 2px dashed #ccc;
}

.profile-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #ccc;
}

.profile-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-placeholder {
    color: #999;
    font-size: 0.85rem;
    text-align: center;
    padding: 10px;
}

.profile-upload-btn {
    flex: 1;
}

.file-upload-label {
    display: inline-block;
    padding: 12px 24px;
    background: #333;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    background: #1a1a1a;
}

.file-input {
    display: none;
}

.artworks-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.artwork-upload-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.artwork-upload-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #fafafa;
    border: 2px dashed #ccc;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.artwork-upload-box:hover {
    border-color: #555;
    background: #f0f0f0;
}

.artwork-upload-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888;
}

.upload-icon {
    font-size: 2rem;
    font-weight: 300;
}

.upload-text {
    font-size: 0.75rem;
    margin-top: 5px;
}

.artwork-input {
    display: none;
}

.artwork-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.artwork-preview.show {
    display: block;
}

.artwork-upload-label.hidden {
    display: none;
}

.artwork-description {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    resize: none;
    transition: border-color 0.3s ease;
}

.artwork-description:focus {
    outline: none;
    border-color: #555;
}

.remove-artwork {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.remove-artwork:hover {
    background: rgba(0, 0, 0, 0.8);
}

.add-artwork-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px dashed #999;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 auto 10px;
}

.add-artwork-btn:hover {
    border-color: #333;
    color: #333;
    background: #f5f5f5;
}

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

.artwork-count {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.artwork-count span {
    font-weight: 700;
    color: #333;
}

.copyright-notice {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff8e6;
    border: 2px solid #e6c866;
    border-radius: 12px;
    margin-top: 10px;
}

.notice-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #e6c866;
    color: #8b6914;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.notice-content {
    flex: 1;
}

.notice-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #8b6914;
    margin-bottom: 10px;
}

.notice-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.notice-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-content ul li {
    color: #666;
    font-size: 0.85rem;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.notice-content ul li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: #e6c866;
}

.notice-content ul li strong {
    color: #8b6914;
}

.profile {
    background: #f5f5f5;
    display: none;
}

.profile.active {
    display: block;
}

.ar-art {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.ar-art .section-title,
.ar-art .section-subtitle {
    color: white;
}

.ar-art .section-title::after {
    background: #00d9ff;
}

.ar-showcase {
    margin-bottom: 60px;
}

.ar-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.ar-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.ar-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.ar-hero-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.ar-hero-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.ar-cta-btn {
    padding: 15px 35px;
    background: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.ar-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.4);
}

.ar-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.ar-feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.ar-feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.ar-feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.ar-feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.ar-feature-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

.ar-gallery h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
}

.ar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.ar-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.ar-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ar-card-info {
    padding: 20px;
}

.ar-card-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.ar-card-info p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.ar-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.artist-modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
}

.artist-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    position: relative;
    animation: slideUp 0.4s ease;
}

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

.artist-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #333;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.artist-modal-close:hover {
    background: #1a1a1a;
    transform: scale(1.1);
}

.artist-modal-header {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px 20px 0 0;
}

.artist-modal-photo img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.artist-modal-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.artist-specialty {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.artist-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    max-width: 600px;
}

.artist-modal-works {
    padding: 40px;
}

.artist-modal-works h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.work-card {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.work-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.work-details {
    padding: 20px;
}

.work-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.work-medium {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.work-dimensions {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.work-price {
    display: inline-block;
    background: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .artist-modal.active {
        padding: 20px 10px;
    }

    .artist-modal-header {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
        text-align: center;
    }

    .artist-modal-photo img {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }

    .artist-modal-info h2 {
        font-size: 1.8rem;
    }

    .artist-description {
        font-size: 0.95rem;
    }

    .artist-modal-works {
        padding: 25px;
    }

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

    .work-card img {
        height: 200px;
    }
}

.profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-status {
    color: #666;
    font-size: 1rem;
    margin-top: 10px;
}

.profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.profile-avatar-section {
    text-align: center;
}

.profile-avatar {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 4px solid #ccc;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    color: #999;
    font-size: 0.9rem;
}

.artist-info-card {
    background: #fafafa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.artist-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 8px;
}

.artist-info-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.artist-info-card p:last-child {
    margin-bottom: 0;
}

.profile-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-bio-section h3,
.profile-artworks-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.bio-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s ease;
}

.bio-textarea:focus {
    outline: none;
    border-color: #555;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.artwork-counter {
    color: #666;
    font-size: 0.9rem;
}

.profile-artworks-section {
    background: #fafafa;
    padding: 25px;
    border-radius: 12px;
}

.profile-artworks-section .artworks-grid {
    margin-bottom: 15px;
}

.profile-artworks-section .copyright-notice {
    margin-top: 15px;
    background: #fff8e6;
    border-color: #e6c866;
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }

    .nav-actions {
        gap: 10px;
    }

    .search-bar.active {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        border-radius: 20px 20px 0 0;
    }

    .search-results-dropdown {
        position: fixed;
        top: auto;
        bottom: 60px;
        left: 0;
        right: 0;
        max-height: 50vh;
        border-radius: 0;
        margin: 0;
    }

    header {
        padding: 140px 0 50px;
    }

    .header-content {
        flex-direction: column;
        gap: 25px;
    }

    header h1 {
        font-size: 1.8rem;
    }

    .header-logo {
        height: 80px;
    }

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

    .artist-spotlight {
        padding: 25px;
    }

    .artist-info {
        flex-direction: column;
        text-align: center;
    }

    .artist-image img {
        width: 100px;
        height: 100px;
    }

    .carousel-slide img {
        height: 280px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .menu-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        min-width: 200px;
        padding: 15px 0;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        gap: 0;
        z-index: 1000;
        margin-top: 10px;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 12px 25px;
        text-align: left;
    }

    .nav-links a:hover {
        background: var(--light);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .portfolio-card img {
        height: 200px;
    }

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

    .artwork-card.large {
        grid-row: span 1;
    }

    .artwork-card.large img {
        min-height: 300px;
    }

    .installation-showcase {
        grid-template-columns: 1fr;
    }

    .installation-main img {
        height: 300px;
    }

    .installation-gallery {
        flex-direction: row;
    }

    .installation-thumb {
        height: 120px;
    }

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

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .event-date {
        margin: 0 auto;
    }

    .event-btn {
        width: 100%;
    }

    .register-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group.full-width {
        grid-column: 1;
    }

    .submit-btn {
        width: 100%;
    }

    .profile-upload-area {
        flex-direction: column;
        text-align: center;
    }

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

    .artwork-description {
        font-size: 0.75rem;
    }

    .profile-content {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .profile-avatar {
        width: 150px;
        height: 150px;
    }

    .ar-hero-image {
        height: 280px;
    }

    .ar-hero-overlay h3 {
        font-size: 1.6rem;
    }

    .ar-hero-overlay p {
        font-size: 1rem;
    }

    .ar-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .ar-card img {
        height: 150px;
    }
}

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

    .profile-avatar {
        width: 120px;
        height: 120px;
    }

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

    .ar-card img {
        height: 200px;
    }
}
