/* style.css - Svetlana Kadirova Artist */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --gold-light: #e8c968;
    --gold-dark: #b8941f;
    --black: #0a0a0a;
    --cream: #f5f0e6;
    --bronze: #cd7f32;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--black);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation - Mobile First */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    border-bottom: 1px solid var(--gold);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: none;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--cream);
    font-family: 'Poiret One', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    padding: 2rem 5%;
    border-bottom: 1px solid var(--gold);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    color: var(--cream);
    text-decoration: none;
    font-family: 'Poiret One', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* Hero Slider - Mobile First */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.slide-content {
    position: absolute;
    bottom: 15%;
    left: 5%;
    right: 5%;
    max-width: 100%;
    z-index: 10;
}

.slide-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.slide-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--cream);
    font-style: italic;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 100;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    transform: rotate(45deg);
}

.slider-dot.active {
    background: var(--gold);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2%;
    z-index: 100;
    transform: translateY(-50%);
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    background: rgba(10, 10, 10, 0.5);
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: var(--gold);
    color: var(--black);
}

/* Decorative Elements */
.art-deco-divider {
    text-align: center;
    padding: 2rem 0;
    position: relative;
}

.art-deco-divider::before {
    content: '◆';
    color: var(--gold);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.art-deco-divider::after {
    content: '';
    display: block;
    width: 150px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--cream);
    font-style: italic;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 3px solid var(--gold);
    background: var(--black);
    transition: transform 0.5s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid var(--gold);
    pointer-events: none;
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
    letter-spacing: 2px;
}

.gallery-caption p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--cream);
    font-style: italic;
}

/* Modal/Lightbox */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-in;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 2rem;
    background: var(--black);
    border: 3px solid var(--gold);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    background: rgba(10, 10, 10, 0.9);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--black);
}

.modal-image-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.modal-image-container.zoomed {
    cursor: zoom-out;
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(10, 10, 10, 0.8);
    color: var(--gold);
    padding: 0.5rem 1rem;
    font-family: 'Poiret One', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border: 1px solid var(--gold);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-image-container:hover .zoom-hint {
    opacity: 1;
}

.modal-info {
    padding: 2rem;
    border-top: 2px solid var(--gold);
}

.modal-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.modal-description {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.modal-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-detail-item {
    flex: 1;
    min-width: 120px;
}

.modal-detail-label {
    font-family: 'Poiret One', sans-serif;
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.modal-detail-value {
    font-size: 1rem;
    color: var(--cream);
}

.modal-keywords {
    margin-top: 1.5rem;
}

.modal-keywords-title {
    font-family: 'Poiret One', sans-serif;
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.modal-keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modal-keyword {
    padding: 0.4rem 1rem;
    border: 1px solid var(--gold);
    color: var(--cream);
    font-size: 0.9rem;
    font-family: 'Cormorant Garamond', serif;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 3rem 5%;
    position: relative;
}

.about-section::before,
.about-section::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    opacity: 0.3;
}

.about-section::before {
    top: 5%;
    left: 5%;
    border-right: none;
    border-bottom: none;
}

.about-section::after {
    bottom: 5%;
    right: 5%;
    border-left: none;
    border-top: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--gold);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: sepia(20%);
}

.about-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.credentials {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.credential-item {
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--gold);
    flex: 1;
    min-width: 100px;
    max-width: 200px;
}

.credential-number {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 0.3rem;
}

.credential-label {
    font-family: 'Poiret One', sans-serif;
    font-size: 0.8rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    padding: 3rem 5%;
    background: var(--black);
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    transform: rotate(-45deg);
}

.contact-item span {
    font-family: 'Poiret One', sans-serif;
    font-size: 1rem;
    color: var(--cream);
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    transform: rotate(45deg);
}

.social-links a:hover {
    background: var(--gold);
    transform: rotate(45deg) scale(1.1);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    transform: rotate(-45deg);
    transition: fill 0.3s;
}

.social-links a:hover svg {
    fill: var(--black);
}

/* Footer */
footer {
    background: var(--black);
    border-top: 1px solid var(--gold);
    padding: 1.5rem 5%;
    text-align: center;
}

footer p {
    font-family: 'Poiret One', sans-serif;
    font-size: 0.8rem;
    color: var(--cream);
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    background: rgba(10, 10, 10, 0.9);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 999;
    transform: rotate(45deg);
}

.scroll-to-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(45deg) scale(1.1);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transform: rotate(-45deg);
}

.scroll-to-top.visible {
    display: flex;
}

/* Tablet - min-width: 768px */
@media (min-width: 768px) {
    nav {
        padding: 1.5rem 5%;
    }

    .logo {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }

    .mobile-menu-btn {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .hero-slider {
        margin-top: 80px;
    }

    .slide-content {
        left: 10%;
        right: auto;
        max-width: 600px;
    }

    .slide-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .slide-description {
        font-size: 1.3rem;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .art-deco-divider {
        padding: 3rem 0;
    }

    .art-deco-divider::before {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .art-deco-divider::after {
        width: 200px;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .section-header p {
        font-size: 1.2rem;
        padding: 0;
    }

    .gallery-section {
        padding: 4rem 5%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .gallery-item img {
        height: 450px;
    }

    .gallery-item::before {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .gallery-caption {
        padding: 2.5rem 2rem 1.5rem;
    }

    .gallery-caption h3 {
        font-size: 1.6rem;
    }

    .gallery-caption p {
        font-size: 1.1rem;
    }

    /* Modal Tablet */
    .modal-content {
        margin: 3rem;
        max-height: 85vh;
    }

    .modal-image {
        max-height: 50vh;
    }

    .modal-info {
        padding: 2.5rem;
    }

    .modal-title {
        font-size: 2rem;
    }

    .modal-description {
        font-size: 1.15rem;
    }

    .about-section {
        padding: 4rem 5%;
    }

    .about-section::before,
    .about-section::after {
        width: 120px;
        height: 120px;
    }

    .about-container {
        gap: 3rem;
    }

    .about-image::before {
        top: -20px;
        left: -20px;
        right: 20px;
        bottom: 20px;
    }

    .about-content h2 {
        font-size: 2.3rem;
        margin-bottom: 2rem;
    }

    .about-content p {
        font-size: 1.15rem;
    }

    .credential-item {
        padding: 1.5rem;
    }

    .credential-number {
        font-size: 2.5rem;
    }

    .credential-label {
        font-size: 0.9rem;
    }

    .contact-section {
        padding: 4rem 5%;
    }

    .contact-info {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
    }

    .contact-icon svg {
        width: 22px;
        height: 22px;
    }

    .social-links {
        gap: 2rem;
    }

    .social-links a {
        width: 50px;
        height: 50px;
    }

    .social-links svg {
        width: 20px;
        height: 20px;
    }

    footer {
        padding: 2rem 5%;
    }

    footer p {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .scroll-to-top {
        width: 55px;
        height: 55px;
        bottom: 40px;
        right: 40px;
    }

    .scroll-to-top svg {
        width: 22px;
        height: 22px;
    }
}

/* Desktop - min-width: 968px */
@media (min-width: 968px) {
    .slide-title {
        font-size: 4rem;
        letter-spacing: 3px;
    }

    .slide-description {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .gallery-item img {
        height: 500px;
    }

    .about-container {
        grid-template-columns: 1fr 1.5fr;
        gap: 5rem;
    }

    .about-section::before,
    .about-section::after {
        width: 150px;
        height: 150px;
    }

    .about-content h2 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .credentials {
        gap: 3rem;
        margin-top: 3rem;
    }

    .credential-item {
        padding: 1.5rem;
        min-width: 150px;
        max-width: 200px;
    }

    .credential-number {
        font-size: 3rem;
    }

    .contact-info {
        gap: 4rem;
    }

    .social-links {
        gap: 2rem;
        margin-top: 3rem;
    }

    /* Modal Desktop */
    .modal-content {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        margin: 3rem;
        max-height: 80vh;
    }

    .modal-image-container {
        height: 100%;
    }

    .modal-image {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
    }

    .modal-info {
        border-top: none;
        border-left: 2px solid var(--gold);
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .modal-title {
        font-size: 2.2rem;
    }

    .scroll-to-top {
        width: 60px;
        height: 60px;
        bottom: 50px;
        right: 50px;
    }

    .scroll-to-top svg {
        width: 24px;
        height: 24px;
    }
}