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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf6f0;
}

/* ===== INTRO PAGE ===== */
.intro-page {
    overflow: hidden;
    height: 100vh;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.intro-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 15%;
    height: 100vh;
}

.enter-button {
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: white;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.enter-button.show {
    opacity: 1;
    transform: translateY(0);
}

.enter-button:hover {
    background: white;
    color: #333;
}

.hidden {
    display: none;
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: sticky;
    top: 0;
    background: #faf6f0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    z-index: 200;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #999;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

/* ===== GALLERY PAGE ===== */
.gallery-header {
    background-color: #faf6f0;
    padding: 25px 40px 15px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-name {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
}

.gallery-container {
    height: calc(100vh - 170px);
    padding: 0;
    background-color: #faf6f0;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
}

.gallery-grid {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 55px;
    padding: 40px 40px 140px 40px;
    flex: 1;
    overflow-x: auto;
}

.gallery-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom,
        #b8a690 0%,
        #a89580 20%,
        #978470 50%,
        #887460 80%,
        #796350 100%);
    border-top: 3px solid #5a4a3a;
    box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.gallery-item {
    cursor: pointer;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 6px solid #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 1s ease-in forwards;
    opacity: 0;
    display: inline-flex;
    line-height: 0;
    flex-shrink: 0;
}

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

.gallery-item img {
    display: block;
}

.gallery-item-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 10px 10px;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.3px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    word-wrap: break-word;
    line-height: 1.3;
    min-width: 60px;
}

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

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.hidden {
    display: none;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-content {
    display: flex;
    gap: 60px;
    max-width: 90%;
    max-height: 90%;
    align-items: center;
}

.lightbox-content img {
    max-width: 60%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-info {
    color: white;
    max-width: 400px;
}

.lightbox-info h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.lightbox-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ccc;
    font-weight: 300;
}

/* ===== ABOUT PAGE ===== */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h1 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.bio {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.contact-info {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.contact-info h2 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

.contact-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid #d0d0d0;
    background: #fff;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

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

.submit-button {
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #333;
    color: white;
    border: 2px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.submit-button:hover {
    background: white;
    color: #333;
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-status {
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        gap: 30px;
    }

    .gallery-header {
        padding: 20px 20px 15px;
    }

    .artist-name {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .gallery-container {
        height: calc(100vh - 140px);
    }

    .gallery-grid {
        gap: 30px;
        padding: 20px 20px 140px 20px;
    }

    .gallery-item {
        border-width: 4px;
    }

    .gallery-item img {
        max-height: 60vh !important;
    }

    .gallery-floor {
        height: 100px;
    }

    .gallery-item-title {
        font-size: 10px;
        padding: 30px 8px 8px;
    }

    .intro-content {
        padding-left: 10%;
    }

    .lightbox-content {
        flex-direction: column;
        gap: 30px;
    }

    .lightbox-content img {
        max-width: 100%;
        max-height: 50vh;
    }

    .lightbox-info {
        max-width: 100%;
    }

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

    .about-container {
        padding: 40px 20px;
    }
}
