:root {
    color-scheme: light;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at top, rgba(8, 150, 168, 0.08), transparent 28%),
        linear-gradient(180deg, #fffdf8 0%, #fff7ea 100%);
}

h1,
h2,
h3,
.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

main {
    overflow: clip;
}

svg {
    fill: currentColor;
}

#site-header.is-scrolled .mx-auto > div:first-child {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 60px rgba(7, 27, 34, 0.18);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: #071b22;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#mobile-menu-button {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

#mobile-menu-button.is-open .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

#mobile-menu-button.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

#mobile-menu-button.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    max-height: 0;
    opacity: 0;
    transform: translateY(-12px);
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hover-lift {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(7, 27, 34, 0.12);
}

.platform-card {
    transition: transform 0.35s ease, background-color 0.35s ease;
}

.platform-card:hover {
    transform: translateY(-6px) scale(1.01);
    background-color: rgba(255, 255, 255, 0.16);
}

.hours-row {
    transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.hours-row.is-today {
    border-color: rgba(8, 150, 168, 0.35);
    background: rgba(8, 150, 168, 0.08);
    transform: translateX(6px);
}

.hours-row.is-open-now {
    box-shadow: inset 0 0 0 1px rgba(8, 150, 168, 0.25);
}

.gallery-item img {
    display: block;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(7, 27, 34, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-image {
    max-width: min(92vw, 1100px);
    max-height: 84vh;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.8rem 1rem;
    color: #fff;
    cursor: pointer;
}

.hero-side-panel::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero-info-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.hero-info-badge,
.hero-image-badge,
.hero-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-info-badge {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-info-badge svg,
.hero-image-badge svg,
.hero-feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-image-badge {
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #e9dcc0;
    backdrop-filter: blur(10px);
}

.hero-feature-card {
    min-height: 122px;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.hero-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(7, 27, 34, 0.62);
}

.hero-feature-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.95rem;
    background: rgba(8, 150, 168, 0.18);
    color: #d8f7fb;
    box-shadow: inset 0 0 0 1px rgba(8, 150, 168, 0.2);
}

.mobile-action-link {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #fff7ea;
    color: #071b22;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.25s ease, background-color 0.25s ease;
    box-shadow: inset 0 0 0 1px rgba(7, 27, 34, 0.05);
}

.mobile-action-link:hover,
.mobile-action-link:focus-visible {
    transform: translateY(-2px);
    background: rgba(8, 150, 168, 0.12);
}

.footer-meta {
    position: relative;
}

.footer-signature-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 140px;
}

.signature {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    z-index: auto !important;
}

.signature .dijital-logo {
    filter: drop-shadow(0 10px 22px rgba(7, 27, 34, 0.18));
}

@media (max-width: 767px) {
    body {
        padding-bottom: 6rem;
    }

    .hero-feature-card {
        min-height: 108px;
    }

    .footer-signature-wrap {
        justify-content: flex-start;
        margin-top: 0.25rem;
    }

    .signature {
        transform: scale(0.86) !important;
        transform-origin: left center !important;
    }
}

@media (min-width: 1024px) {
    #mobile-menu-button,
    #mobile-menu {
        display: none !important;
    }
}
