@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --bg-main: #101014;
    --bg-highlight: #181820;
    --text-main: #F2F2F4;
    --title: #FFFFFF;
    --accent: #5A2CA0;
    --accent-hover: #8A3FFC;
    --footer-space: 260px;
    --header-offset: 200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: max(calc(var(--footer-space) + 24px), 320px);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px 0;
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(138, 63, 252, 0.72) 22%, rgba(138, 63, 252, 0.72) 78%, transparent 100%);
    box-shadow: 0 0 8px rgba(138, 63, 252, 0.55);
}

.header::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 8px;
    background:
        radial-gradient(circle, rgba(138, 63, 252, 0.85) 0, rgba(138, 63, 252, 0) 65%) 22% 50% / 110px 100% no-repeat,
        radial-gradient(circle, rgba(138, 63, 252, 0.85) 0, rgba(138, 63, 252, 0) 65%) 78% 50% / 110px 100% no-repeat;
    pointer-events: none;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    justify-content: center;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav li {
    min-width: 0;
}

.nav a {
    text-decoration: none;
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.nav a:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
}

/* MAIN CONTENT */
main {
    flex: 0 0 auto;
    margin-top: var(--header-offset);
    margin-bottom: 0;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

h1 {
    position: relative;
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: var(--title);
}

h1::after {
    content: '';
    display: block;
    width: 132px;
    height: 1px;
    margin: 12px auto 0;
    background: linear-gradient(90deg, transparent 0%, rgba(138, 63, 252, 0.82) 28%, rgba(138, 63, 252, 0.82) 72%, transparent 100%);
    box-shadow: 0 0 8px rgba(138, 63, 252, 0.5);
}

/* INTRO SECTION */
.intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-main);
}

.section-description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    padding: 0 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* GALLERIES */
.gallery-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-highlight);
    border: 1px solid rgba(138, 63, 252, 0.55);
    box-shadow: 0 0 12px rgba(138, 63, 252, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(138, 63, 252, 0.35);
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* CONTACT FORM */
.contact-form-section {
    max-width: 600px;
    margin: 0 auto 50px;
}

.contact-form {
    background-color: var(--bg-highlight);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid rgba(138, 63, 252, 0.35);
    background-color: var(--bg-main);
    color: var(--text-main);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-hover);
    box-shadow: 0 0 0 3px rgba(138, 63, 252, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    font-family: 'Inter', sans-serif;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--accent);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--accent-hover);
}

.submit-btn:disabled {
    opacity: 0.75;
    cursor: wait;
}

.form-feedback {
    display: none;
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(90, 44, 160, 0.65);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(90, 44, 160, 0.28), rgba(24, 24, 32, 0.95));
    color: #f6f1ff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.35;
}

.form-feedback.is-visible {
    display: block;
    animation: feedbackFadeIn 0.45s ease both;
}

.camera-send-overlay {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(16, 16, 20, 0.72);
    backdrop-filter: blur(3px);
}

.camera-send-overlay.is-visible {
    display: flex;
}

.camera-send-card {
    width: min(380px, 92vw);
    background: linear-gradient(155deg, rgba(24, 24, 32, 0.98), rgba(32, 18, 46, 0.98));
    border: 1px solid rgba(138, 63, 252, 0.45);
    border-radius: 16px;
    padding: 22px 20px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4), 0 0 24px rgba(138, 63, 252, 0.18);
}

.camera-icon {
    position: relative;
    width: 94px;
    height: 62px;
    margin: 0 auto 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(54, 54, 66, 0.95), rgba(22, 22, 30, 1));
    border: 2px solid rgba(138, 63, 252, 0.72);
}

.camera-top {
    position: absolute;
    top: -12px;
    left: 12px;
    width: 36px;
    height: 16px;
    border-radius: 8px 8px 2px 2px;
    background-color: rgba(138, 63, 252, 0.7);
}

.camera-lens {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(circle at 35% 30%, rgba(230, 240, 255, 0.95) 0 15%, rgba(94, 158, 255, 0.85) 16% 42%, rgba(23, 32, 74, 0.95) 43% 100%);
    border: 2px solid rgba(184, 197, 255, 0.6);
}

.camera-flash {
    position: absolute;
    top: 9px;
    right: 10px;
    width: 14px;
    height: 10px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.5);
}

.camera-send-text {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #f3eefc;
}

.camera-send-check {
    margin: 10px 0 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #d2ffd8;
    opacity: 0;
    transform: translateY(8px) scale(0.95);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.camera-send-card.is-animating .camera-icon {
    animation: cameraShake 0.7s ease-in-out 2;
}

.camera-send-card.is-animating .camera-lens {
    animation: lensPulse 0.7s ease-in-out 2;
}

.camera-send-card.is-animating .camera-flash {
    animation: flashPop 0.7s ease-in-out 2;
}

.camera-send-card.is-complete .camera-send-check {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes cameraShake {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px) rotate(-1.2deg);
    }
    50% {
        transform: translateX(2px) rotate(1.2deg);
    }
    75% {
        transform: translateX(-1px) rotate(-0.7deg);
    }
}

@keyframes lensPulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
    45% {
        transform: translate(-50%, -50%) scale(1.08);
    }
}

@keyframes flashPop {
    0%,
    100% {
        background-color: rgba(255, 255, 255, 0.5);
        box-shadow: none;
    }
    30% {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.95);
    }
}

@keyframes feedbackFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FOOTER */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    background-color: var(--bg-highlight);
    color: var(--text-main);
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        'testimonials'
        'social'
        'copy';
    justify-items: center;
    align-items: center;
    row-gap: 8px;
}

.social-links {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-shrink: 0;
    width: auto;
}

.footer-content > .social-links {
    grid-area: social;
}

.footer-copy {
    grid-area: copy;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--text-main);
    opacity: 0.9;
    text-align: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(90, 44, 160, 0.5);
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
}

.icon {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* ABOUT SECTION */
.about-section {
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.about-image {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(138, 63, 252, 0.62);
    box-shadow: 0 0 14px rgba(138, 63, 252, 0.24), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-image::before,
.about-image::after {
    content: '';
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.about-image::before {
    inset: 10px;
    border: 1px solid rgba(138, 63, 252, 0.48);
    box-shadow: 0 0 10px rgba(138, 63, 252, 0.45);
}

.about-image::after {
    inset: -14px;
    border: 1px solid rgba(138, 63, 252, 0.42);
    box-shadow: 0 0 16px rgba(138, 63, 252, 0.35);
}

.about-image img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 22%;
}

.watermark-protected {
    position: relative;
    -webkit-user-select: none;
    user-select: none;
}

.watermark-protected img {
    -webkit-user-drag: none;
}

.photo-watermark {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    padding: 4px 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(242, 242, 244, 0.9);
    background: rgba(16, 16, 20, 0.5);
    border-radius: 3px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.about-text h2 {
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--title);
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 102px;
    height: 1px;
    margin-top: 10px;
    background: linear-gradient(90deg, rgba(138, 63, 252, 0.85) 0%, rgba(138, 63, 252, 0.85) 58%, transparent 100%);
    box-shadow: 0 0 8px rgba(138, 63, 252, 0.5);
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: justify;
}

.icon {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.testimonials-footer {
    grid-area: testimonials;
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
}

.testimonials-footer::after {
    content: '';
    display: block;
    width: min(760px, 78vw);
    height: 1px;
    margin-top: 10px;
    background: linear-gradient(90deg, transparent 0%, rgba(138, 63, 252, 0.85) 18%, rgba(138, 63, 252, 0.85) 82%, transparent 100%);
    box-shadow: 0 0 8px rgba(138, 63, 252, 0.55);
}

.testimonials-footer h3 {
    font-size: 14px;
    color: var(--title);
    margin-bottom: 5px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.footer-spacer {
    flex-shrink: 0;
    width: auto;
    visibility: hidden;
}

.footer-content > .footer-spacer {
    display: none;
}

.testimonial-container {
    position: relative;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-container::before,
.testimonial-container::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 105px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(138, 63, 252, 0.85) 45%, rgba(138, 63, 252, 0.85) 100%);
    box-shadow: 0 0 8px rgba(138, 63, 252, 0.6);
    transform: translateY(-50%);
    pointer-events: none;
}

.testimonial-container::before {
    left: -120px;
}

.testimonial-container::after {
    right: -120px;
    transform: translateY(-50%) scaleX(-1);
}

.testimonial {
    opacity: 0;
    position: absolute;
    transition: opacity 0.3s ease;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-main);
    padding: 0 10px;
}

.testimonial.active {
    opacity: 1;
    position: relative;
}

/* LIGHTBOX */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(5, 5, 8, 0.92);
    z-index: 10000;
    padding: 24px;
}

.lightbox-overlay.is-open {
    display: flex;
}

.lightbox-image {
    max-width: min(92vw, 1300px);
    max-height: 84vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(138, 63, 252, 0.45);
    box-shadow: 0 0 24px rgba(138, 63, 252, 0.28);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    border: 1px solid rgba(138, 63, 252, 0.55);
    background: rgba(16, 16, 20, 0.82);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(138, 63, 252, 0.8);
    transform: scale(1.04);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 20px;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 56px;
    border-radius: 6px;
    font-size: 28px;
    line-height: 1;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

body.lightbox-open {
    overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    :root {
        --header-offset: 230px;
    }

    .header-content {
        padding: 15px 10px;
        gap: 10px;
    }

    .logo img {
        height: 60px;
    }

    .nav ul {
        width: min(100%, 760px);
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 14px;
        row-gap: 10px;
        align-items: center;
    }

    .nav a {
        font-size: 14px;
        display: block;
        text-align: center;
        white-space: normal;
        text-wrap: balance;
        line-height: 1.2;
        min-height: 34px;
        max-width: 145px;
        margin: 0 auto;
    }

    h1 {
        font-size: 28px;
    }

    .gallery-two-col,
    .gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: center;
    }

    .about-image {
        max-width: 420px;
        width: 100%;
        height: auto;
        margin: 0 auto;
        aspect-ratio: 4 / 5;
    }

    .contact-form {
        padding: 25px;
    }

    .testimonial-container {
        min-height: 70px;
    }

    .photo-watermark {
        font-size: 10px;
        right: 8px;
        bottom: 8px;
    }

    .testimonial-container::before,
    .testimonial-container::after {
        width: 72px;
    }

    .testimonial-container::before {
        left: -80px;
    }

    .testimonial-container::after {
        right: -80px;
    }

    .testimonial {
        font-size: 14px;
        padding: 0 15px;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .footer-spacer {
        display: none;
    }

    .icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-offset: 250px;
    }

    .header {
        padding: 15px 0;
    }

    .logo img {
        height: 50px;
    }

    .nav ul {
        width: min(100%, 430px);
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 8px;
        row-gap: 8px;
        align-items: center;
    }

    .nav a {
        font-size: 13px;
        display: block;
        text-align: center;
        white-space: normal;
        text-wrap: balance;
        line-height: 1.2;
        min-height: 32px;
        max-width: 120px;
        margin: 0 auto;
        padding-bottom: 3px;
    }

    main {
        margin-bottom: 0;
        padding: 0 10px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .intro {
        font-size: 16px;
    }

    .about-text h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-image {
        aspect-ratio: 3 / 4;
    }

    .about-text p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .section-description {
        font-size: 14px;
        padding: 0 15px;
        margin-bottom: 35px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .testimonial-container {
        min-height: 30px;
    }

    .photo-watermark {
        font-size: 9px;
        padding: 3px 6px;
    }

    .testimonial-container::before,
    .testimonial-container::after {
        display: none;
    }

    .testimonial {
        font-size: 12px;
        padding: 0 5px;
    }


    .footer-content {
        padding: 0 10px;
        row-gap: 6px;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 30px;
        height: 30px;
    }

    .icon {
        width: 18px;
        height: 18px;
    }

    .footer-copy {
        font-size: 11px;
    }

    .lightbox-overlay {
        padding: 14px;
    }

    .lightbox-image {
        max-width: 94vw;
        max-height: 78vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 34px;
        height: 46px;
        font-size: 22px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}