* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #F8EEDB;
    --soft-cream: #FFF8EC;
    --white: #FFFFFF;
    --orange: #F2A23A;
    --dark-orange: #D9821F;
    --black: #1F1F1F;
    --gray: #666666;
    --soft-shadow: 0 18px 45px rgba(31, 31, 31, 0.10);
    --border-soft: 1px solid rgba(242, 162, 58, 0.22);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--soft-cream);
    color: var(--black);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

/* HEADER */

.header {
    width: 100%;
    background: rgba(255, 248, 236, 0.95);
    border-bottom: 1px solid rgba(242, 162, 58, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    backdrop-filter: blur(12px);
}

.navbar {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--black);
}

.logo-area img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(31, 31, 31, 0.08);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 18px;
    letter-spacing: 0.4px;
}

.logo-text span {
    font-size: 12px;
    color: var(--dark-orange);
    margin-top: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: var(--black);
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--dark-orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-btn {
    background: var(--orange);
    color: var(--white);
    padding: 11px 20px;
    border-radius: 30px;
    font-weight: 800;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(242, 162, 58, 0.30);
}

.phone-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

.menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(31, 31, 31, 0.08);
}

/* HERO */

.hero {
    min-height: 100vh;
    padding-top: 82px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 20, 20, 0.84), rgba(20, 20, 20, 0.52), rgba(20, 20, 20, 0.22)),
        radial-gradient(circle at right top, rgba(242, 162, 58, 0.32), transparent 36%),
        linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.45));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 40px 0;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.94);
    color: var(--dark-orange);
    padding: 9px 17px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(30, 30, 30, 0.18);
}

.hero h1 {
    font-size: 68px;
    line-height: 1.04;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -1.5px;
}

.hero p {
    font-size: 20px;
    max-width: 630px;
    margin-bottom: 32px;
    color: #FFF1DC;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 34px;
    font-weight: 900;
    transition: 0.3s ease;
}

.primary-btn {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(242, 162, 58, 0.38);
}

.primary-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

.secondary-btn {
    background: var(--white);
    color: var(--black);
    border: 1px solid rgba(242, 162, 58, 0.35);
}

.secondary-btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.map-btn {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(242, 162, 58, 0.65);
}

.map-btn:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-info {
    margin-top: 34px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-info div {
    min-width: 150px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 15px 18px;
}

.hero-info strong {
    display: block;
    color: var(--white);
    font-size: 16px;
}

.hero-info span {
    display: block;
    color: #F8EEDB;
    font-size: 13px;
    margin-top: 3px;
}

/* SECTIONS */

.section {
    padding: 92px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.section-heading span {
    color: var(--dark-orange);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: 40px;
    margin-top: 8px;
    color: var(--black);
    letter-spacing: -0.6px;
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    background: var(--orange);
    margin: 14px auto 0;
    border-radius: 10px;
}

.left-heading {
    text-align: left;
}

.left-heading h2::after {
    margin: 14px 0 0;
}

.light-section {
    background:
        radial-gradient(circle at left top, rgba(242, 162, 58, 0.16), transparent 30%),
        var(--cream);
}

/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.about-text p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 16px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.about-tags span {
    background: var(--white);
    border: var(--border-soft);
    color: var(--dark-orange);
    padding: 9px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
}

.about-image {
    height: 410px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    border: var(--border-soft);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FEATURES */

.features {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.88);
    padding: 32px 24px;
    text-align: center;
    border-radius: 24px;
    border: var(--border-soft);
    box-shadow: 0 12px 30px rgba(30, 30, 30, 0.055);
    transition: 0.3s ease;
}

.feature-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft-cream);
    color: var(--dark-orange);
    font-size: 23px;
    box-shadow: inset 0 0 0 1px rgba(242, 162, 58, 0.18);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black);
}

.feature-card p {
    font-size: 15px;
    color: var(--gray);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 18px 40px rgba(31, 31, 31, 0.10);
}

/* ROOMS */

.room-section {
    background: var(--soft-cream);
}

.room-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.room-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    border: var(--border-soft);
    transition: 0.3s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 52px rgba(31, 31, 31, 0.13);
}

.room-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.room-card-content {
    padding: 24px;
}

.room-card-content span {
    display: inline-block;
    color: var(--dark-orange);
    background: var(--soft-cream);
    padding: 5px 10px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.room-card-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.room-card-content p {
    color: var(--gray);
    font-size: 15px;
}

/* FAMILY SECTION */

.family-section {
    background:
        linear-gradient(135deg, rgba(31,31,31,0.72), rgba(31,31,31,0.52)),
        url("../images/oturma-alani.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.family-box {
    display: flex;
    justify-content: flex-start;
}

.family-content {
    max-width: 680px;
    background: rgba(255, 248, 236, 0.94);
    border: 1px solid rgba(242, 162, 58, 0.35);
    border-radius: 32px;
    padding: 44px;
    box-shadow: 0 22px 60px rgba(31, 31, 31, 0.20);
}

.family-content span {
    display: inline-block;
    color: var(--dark-orange);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.1px;
    margin-bottom: 12px;
}

.family-content h2 {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--black);
}

.family-content p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 24px;
}

/* GALLERY */

.gallery {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 18px;
}

.gallery-item {
    border-radius: 24px;
    border: var(--border-soft);
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 30px rgba(31, 31, 31, 0.08);
    background: var(--cream);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.45s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.28), transparent 55%);
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* CONTACT */

.contact-section {
    background:
        linear-gradient(135deg, rgba(31,31,31,0.97), rgba(31,31,31,0.94)),
        url("../images/otel-dis.jpg");
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.contact-heading h2 {
    color: var(--white);
}

.contact-description {
    max-width: 760px;
    margin: 0 auto;
    color: #F4E7D1;
    font-size: 17px;
}

.contact-box {
    max-width: 860px;
    margin: 38px auto;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(242, 162, 58, 0.38);
    border-radius: 26px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 18px;
    backdrop-filter: blur(7px);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-item strong {
    color: var(--orange);
    font-size: 15px;
}

.contact-item span {
    color: var(--white);
    font-size: 16px;
    line-height: 1.5;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* LOCATION */

.location-showcase {
    margin-top: 42px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
    align-items: stretch;
}

.location-text-card {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(242, 162, 58, 0.35);
    border-radius: 28px;
    padding: 32px;
    backdrop-filter: blur(8px);
    text-align: left;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.location-badge {
    display: inline-block;
    background: rgba(242, 162, 58, 0.18);
    color: var(--orange);
    border: 1px solid rgba(242, 162, 58, 0.35);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.location-text-card h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 14px;
}

.location-text-card p {
    color: #F4E7D1;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.location-list li {
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}

.location-list li::before {
    content: "•";
    color: var(--orange);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -4px;
}

.location-link {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 13px 22px;
    border-radius: 30px;
    font-weight: 800;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(242, 162, 58, 0.30);
}

.location-link:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

.location-map-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(242, 162, 58, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.20);
    min-height: 420px;
    background: rgba(255, 255, 255, 0.08);
}

.location-map-card a {
    display: block;
    width: 100%;
    height: 100%;
}

.location-map-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.location-map-card:hover img {
    transform: scale(1.03);
}

.map-overlay-info {
    position: absolute;
    left: 18px;
    bottom: 18px;
    right: 18px;
    background: rgba(20, 20, 20, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 16px 18px;
    text-align: left;
}

.map-overlay-info strong {
    display: block;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 4px;
}

.map-overlay-info span {
    color: #F4E7D1;
    font-size: 14px;
    line-height: 1.5;
}

/* FOOTER */

.footer {
    background: #151515;
    color: var(--white);
    padding: 28px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
}

.footer-logo div {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo strong {
    font-size: 16px;
}

.footer-logo span {
    font-size: 12px;
    color: var(--orange);
    margin-top: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer p {
    color: #d8d8d8;
    font-size: 14px;
}

/* WHATSAPP */

.whatsapp-fixed {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: var(--orange);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 40px;
    font-weight: 900;
    z-index: 1000;
    box-shadow: 0 10px 28px rgba(242, 162, 58, 0.45);
    transition: 0.3s ease;
}

.whatsapp-fixed:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 1050px) {
    .nav-links {
        position: fixed;
        top: 82px;
        left: 0;
        width: 100%;
        background: rgba(255, 248, 236, 0.98);
        border-bottom: 1px solid rgba(242, 162, 58, 0.25);
        padding: 22px;
        flex-direction: column;
        gap: 16px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero p {
        font-size: 18px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .room-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .location-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .navbar {
        height: 74px;
    }

    .nav-links {
        top: 74px;
    }

    .logo-area img {
        width: 50px;
        height: 50px;
    }

    .logo-text strong {
        font-size: 15px;
    }

    .logo-text span {
        font-size: 10px;
    }

    .phone-btn {
        display: none;
    }

    .hero {
        min-height: 94vh;
        padding-top: 74px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-info {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading h2 {
        font-size: 31px;
    }

    .left-heading {
        text-align: center;
    }

    .left-heading h2::after {
        margin: 14px auto 0;
    }

    .about-image {
        height: 310px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .family-section {
        background-attachment: scroll;
    }

    .family-content {
        padding: 30px 22px;
        border-radius: 26px;
    }

    .family-content h2 {
        font-size: 30px;
    }

    .gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .location-text-card {
        padding: 24px;
    }

    .location-text-card h3 {
        font-size: 24px;
    }

    .location-map-card {
        min-height: 280px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-fixed {
        right: 16px;
        bottom: 16px;
        padding: 12px 16px;
        font-size: 14px;
    }
}