* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0f1a24;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

.page-wrapper {
    padding: 20px 0 40px;
}

.topbar {
    background: transparent;
}

.brand {
    color: #ff6b1a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    margin: 0 14px;
    font-weight: 600;
}

.main-section {
    background: #0f1a24;
    border-radius: 10px;
    overflow: hidden;
    padding: 0 0 30px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.section-box {
    background: #15212d;
    border-radius: 0;
    padding: 30px;
    color: white;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-section {
    padding: 55px 40px;
    background: linear-gradient(90deg, #111b26 0%, #162432 100%);
}

.small-top-text {
    color: #d6d6d6;
    font-size: 14px;
    margin-bottom: 18px;
}

.hero-title {
    font-size: 68px;
    line-height: 0.95;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 18px;
    color: #f1f1f1;
    line-height: 1.6;
    font-weight: 600;
}

.hero-image,
.side-image-card img,
.mini-card img,
.image-only-card img,
.bottom-big-img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.hero-image {
    width: 88%;
    max-width: 470px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.btn-orange {
    background: #ff6b1a;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: #e85d10;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 26, 0.25);
}

.section-title {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.section-text {
    color: #d7d7d7;
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.side-image-card {
    background: #222d38;
    padding: 14px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.side-image-card img {
    height: 260px;
    border-radius: 6px;
    filter: saturate(120%) contrast(105%);
}

.mini-card {
    background: #111b26;
    padding: 14px;
    color: white;
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-card img {
    height: 180px;
    border-radius: 8px;
    margin-bottom: 14px;
}

.mini-card h6 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mini-card p {
    font-size: 13px;
    color: #b8b8b8;
    margin: 0;
}

.text-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-block h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}

.image-only-card img {
    height: 100%;
    min-height: 300px;
}

.light-card {
    background: #f7f2eb;
    color: #111;
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.light-card h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.light-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 22px;
}

.bottom-big-img {
    min-height: 330px;
    border-radius: 8px;
}

.info-icons h4,
.opening-hours h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.icon-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.icon-item span {
    font-size: 28px;
    line-height: 1;
}

.icon-item h6 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
}

.icon-item p {
    margin: 0;
    color: #bfc5cb;
    font-size: 13px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #d7d7d7;
    font-size: 14px;
}

.side-image-card:hover img,
.mini-card:hover img,
.image-only-card:hover img,
.section-box:hover .bottom-big-img {
    transform: scale(1.08);
}

.mini-card:hover,
.section-box:hover,
.light-card:hover,
.side-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 38px;
    }

    .text-block h2 {
        font-size: 38px;
    }

    .hero-image {
        width: 100%;
        max-width: 360px;
    }
}

@media (max-width: 767px) {
    .main-section {
        border-radius: 0;
    }

    .hero-section {
        padding: 35px 20px;
    }

    .section-box {
        padding: 22px;
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 30px;
    }

    .text-block h2 {
        font-size: 30px;
    }

    .mini-card img,
    .side-image-card img,
    .image-only-card img,
    .bottom-big-img {
        height: auto;
        min-height: unset;
    }

    .hero-image {
        width: 100%;
        max-width: 320px;
    }
}