body {
    background-image: url("photos/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: none;
    transition: box-shadow 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.36);
}

h1 {
    font-family: 'Parisienne', cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 660px;
    margin: 0;
}

.nav-link {
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.gallery-slider {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.slider-track {
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 220px;
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
}

.slider-slide.is-active {
    opacity: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.55);
}

.slider-arrow-left {
    left: 0.9rem;
}

.slider-arrow-right {
    right: 0.9rem;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 9999px;
    border: 0;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.slider-dot.is-active {
    background: #ffffff;
}

.gallery-tile {
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    min-height: 220px;
    cursor: pointer;
}

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

.gallery-tile:hover img {
    transform: scale(1.03);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
}

.lightbox.is-open {
    display: block;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(3px);
}

.lightbox-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-image {
    max-width: min(92vw, 1200px);
    max-height: 84vh;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    object-fit: contain;
}

.lightbox-arrow,
.lightbox-close {
    position: absolute;
    z-index: 2;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.lightbox-arrow:hover,
.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.68);
}

.lightbox-arrow-left {
    left: 2rem;
}

.lightbox-arrow-right {
    right: 2rem;
}

.lightbox-close {
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.5rem;
    line-height: 1;
}

.card-arrow {
    display: inline-block;
    transition: transform 0.22s ease;
}

.page-link:hover .card-arrow {
    transform: translateX(6px);
}

.site-footer {
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(88%, 70rem);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.footer-link {
    color: rgba(255, 255, 255, 0.84);
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.form-input {
    width: 100%;
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    padding: 0.62rem 0.78rem;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.form-input:focus {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.12);
}

.scroll-indicator {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translate(-50%, 0);
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    opacity: 1;
    visibility: visible;
    filter: blur(0);
    transition: opacity 1.2s ease, transform 1.2s ease, filter 1.2s ease;
}

.scroll-indicator.is-fading {
    opacity: 0;
    transform: translate(-50%, 14px);
    filter: blur(3px);
}

.scroll-indicator.is-gone {
    visibility: hidden;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 21;
    gap: 6px;
}

.hamburger-menu span {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.is-open span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.hamburger-menu.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.is-open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

.nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    gap: 1.5rem;
    margin: 0;
    list-style: none;
}

.nav-menu li {
    display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    h1 {
        height: 300px;
        font-size: 2.5rem;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute !important;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column !important;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin: 0 !important;
    }

    .nav-menu.is-open {
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav-menu li {
        padding: 0.75rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu li a {
        display: block;
    }
}

.scroll-indicator-icon {
    display: block;
    animation: arrow-bounce 3.4s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}