/* ================================
   TEMEL AYARLAR
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f4ee;
    color: #24231f;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* ================================
   GENEL
================================ */

.section {
    padding: 120px 20px;
}

.section-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.section-label {
    color: #a47b42;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 400;
}


/* ================================
   NAVBAR
================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(30, 29, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-container {
    width: min(1250px, 100%);
    margin: auto;
    min-height: 78px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo span {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    letter-spacing: 4px;
    color: #d5b27c;
    margin-top: -3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    color: #fff;
}

.nav-links a {
    font-size: 14px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #d5b27c;
}

.nav-button {
    padding: 11px 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-size: 13px;
    transition: 0.3s ease;
}

.nav-button:hover {
    background: white;
    color: #24231f;
}


/* ================================
   NAVBAR LOGO
================================ */

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}


/* ================================
   MOBİL MENÜ
================================ */

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    background: white;
    transition: 0.3s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}


/* ================================
   HERO
================================ */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    background-image: url("images/otel.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(20, 19, 16, 0.55),
            rgba(20, 19, 16, 0.65)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(850px, 90%);
    animation: heroAppear 1s ease forwards;
}


/* ================================
   HERO ÜST LOGO YAZISI
================================ */

.hero-brand-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 3vw, 34px);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 22px;
    display: block;
}

.hero-brand-line img {
    width: auto;
    height: 250px;
    max-width: 600px;
    object-fit: contain;
    display: block;
    margin: auto;
}

.hero-brand-line span {
    display: block;
}

/* ================================
   HERO DİĞER BAŞLIK
================================ */

.hero h1:not(.hero-brand-line) {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 8vw, 92px);
    line-height: 0.98;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 13px;
    letter-spacing: 7px;
    color: #e1c18d;
    margin-bottom: 25px;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
}

.hero hr {
    width: 80px;
    margin: 0 auto 25px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


/* ================================
   BUTONLAR
================================ */

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: #a47b42;
    color: white;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.primary-button:hover {
    background: #896536;
    transform: translateY(-3px);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: white;
    font-size: 13px;
    font-weight: bold;
    transition: 0.3s ease;
}

.secondary-button:hover {
    background: white;
    color: #24231f;
    transform: translateY(-3px);
}


/* ================================
   SCROLL
================================ */

.scroll-down {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: white;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.arrow {
    font-size: 22px;
    animation: arrowMove 1.5s infinite;
}


/* ================================
   ABOUT
================================ */

.about {
    background: #f7f4ee;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    max-width: 520px;
}

.about-text h2 {
    margin-bottom: 30px;
}

.about-text p:not(.section-label) {
    color: #666158;
    margin-bottom: 18px;
    font-size: 16px;
}

.about-image {
    height: 570px;
    overflow: hidden;
}

.about-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}


/* ================================
   FEATURES
================================ */

.features {
    background: #e9e2d6;
    padding: 70px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature-image {
    width: 90px;
    height: 90px;
    margin: 0 auto 22px;
    border-radius: 50%;
    overflow: hidden;
    background: #ddd6ca;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature:hover .feature-image img {
    transform: scale(1.1);
}

.feature h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 8px;
}

.feature p {
    color: #706b63;
    font-size: 14px;
}


/* ================================
   ROOMS
================================ */

.rooms {
    background: #f7f4ee;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 55px;
}

.section-heading > p {
    max-width: 330px;
    color: #716c63;
    font-size: 15px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.room-card {
    background: white;
    box-shadow: 0 15px 50px rgba(50, 45, 35, 0.08);
    overflow: hidden;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(50, 45, 35, 0.13);
}

.room-card-clickable {
    cursor: pointer;
}

.room-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.room-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    color: #554b3d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 10px;
}

.room-content > p {
    color: #706b63;
    margin-bottom: 25px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.room-features span {
    background: #f1ede5;
    padding: 7px 11px;
    font-size: 12px;
    color: #5f584d;
}


/* ================================
   ODA DETAY PANELİ
================================ */

.room-detail-panel {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    background: #fff;
    transition:
        max-height 0.6s ease,
        opacity 0.4s ease,
        margin-top 0.6s ease;
}

.room-detail-panel.open {
    opacity: 1;
    margin-top: 35px;
}

.room-detail-inner {
    position: relative;
    padding: 45px;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.room-detail-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
}

.room-detail-content p {
    color: #706b63;
    margin-bottom: 25px;
}

.room-detail-content img {
    width: 100%;
    max-width: 850px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.room-detail-close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #24231f;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}


/* ================================
   LOCATION
================================ */

.location {
    background: #292721;
    color: white;
}

.location-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.location-text {
    max-width: 450px;
}

.location-text h2 {
    margin-bottom: 25px;
}

.location-text > p:not(.section-label):not(.address) {
    color: #bcb7ad;
    margin-bottom: 25px;
}

.address {
    color: white;
    margin-bottom: 30px;
    font-weight: bold;
}

.map-container {
    height: 450px;
    overflow: hidden;
    border-radius: 4px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* ================================
   CONTACT
================================ */

.contact {
    text-align: center;
    background: #f7f4ee;
}

.contact-description {
    max-width: 550px;
    margin: 25px auto 45px;
    color: #706b63;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-button {
    min-width: 260px;
    padding: 20px 25px;
    background: white;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    box-shadow: 0 10px 35px rgba(50, 45, 35, 0.07);
    transition: 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(50, 45, 35, 0.12);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eee7db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a47b42;
    font-size: 20px;
}

.contact-button small {
    display: block;
    color: #858077;
    font-size: 11px;
    margin-bottom: 3px;
}

.contact-button strong {
    display: block;
    font-size: 17px;
}


/* ================================
   FOOTER
================================ */

footer {
    background: #1e1d19;
    color: white;
    padding: 55px 20px 25px;
}

.footer-container {
    text-align: center;
}

.footer-logo {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    letter-spacing: 2px;
}

.footer-logo span {
    font-family: Arial, Helvetica, sans-serif;
    color: #d5b27c;
    font-size: 9px;
    letter-spacing: 4px;
}

.footer-container > p {
    color: #99948a;
    margin: 12px 0 40px;
}

.footer-bottom {
    border-top: 1px solid #3b3933;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: #77736b;
    font-size: 12px;
}

.footer-bottom a:hover {
    color: white;
}


/* ================================
   ANİMASYONLAR
================================ */

@keyframes heroAppear {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes arrowMove {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }

}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .nav-button {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-menu {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(30, 29, 25, 0.97);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition:
            max-height 0.35s ease,
            opacity 0.25s ease;
    }

    .mobile-menu.active {
        max-height: 300px;
        opacity: 1;
    }

    .mobile-menu a {
        padding: 17px 25px;
        color: white;
        font-size: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        transition:
            background 0.25s ease,
            color 0.25s ease;
    }

    .mobile-menu a:hover {
        background: rgba(255, 255, 255, 0.06);
        color: #d5b27c;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text {
        max-width: 700px;
    }

    .about-image {
        height: 450px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .location-text {
        max-width: 700px;
    }

}


/* ================================
   TELEFON
================================ */

@media (max-width: 600px) {

    .section {
        padding: 70px 18px;
    }

    .nav-container {
        min-height: 68px;
        padding: 0 18px;
    }

    .logo {
        font-size: 19px;
        letter-spacing: 1.5px;
    }

    .logo-img {
        height: 65px;
    }

    .logo span {
        font-size: 7px;
        letter-spacing: 3px;
    }

    .mobile-menu-button {
        width: 42px;
        height: 42px;
    }

    .hero {
        min-height: 100svh;
        padding: 100px 18px 80px;
    }

    .hero-content {
        width: 100%;
        max-width: 500px;
    }

    .hero-brand-line {
        gap: 7px;
        font-size: clamp(16px, 4.7vw, 24px);
        line-height: 1.1;
        margin-bottom: 18px;
        display: block;
    }

    .hero-brand-line img {
        height: 200px;
        max-width: 450px;
        display: block;
    }

    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }

    .hero h1:not(.hero-brand-line) {
        font-size: clamp(42px, 12vw, 58px);
        line-height: 1;
        margin-bottom: 25px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 430px;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-buttons a {
        width: 100%;
        min-height: 50px;
    }

    .scroll-down {
        bottom: 16px;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 14px;
    }

    .section h2 {
        font-size: clamp(36px, 10vw, 46px);
        line-height: 1.08;
    }

    .about-container {
        gap: 35px;
    }

    .about-text h2 {
        margin-bottom: 23px;
    }

    .about-text p:not(.section-label) {
        font-size: 15px;
    }

    .about-image {
        height: 360px;
    }

    .features {
        padding: 55px 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature {
        padding: 15px 10px;
    }

    .feature-image {
        width: 80px;
        height: 80px;
        margin-bottom: 18px;
    }

    .feature h3 {
        font-size: 22px;
    }

    .feature p {
        font-size: 14px;
        max-width: 280px;
        margin: 0 auto;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 35px;
    }

    .section-heading > p {
        font-size: 14px;
        max-width: 100%;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .room-image {
        height: 280px;
    }

    .room-content {
        padding: 23px;
    }

    .room-content h3 {
        font-size: 26px;
    }

    .room-content > p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .room-features {
        gap: 8px;
    }

    .room-features span {
        padding: 7px 9px;
        font-size: 11px;
    }

    .room-detail-panel.open {
        margin-top: 15px;
    }

    .room-detail-inner {
        padding: 35px 20px;
    }

    .room-detail-content h2 {
        font-size: 30px;
        padding-right: 35px;
    }

    .location-container {
        gap: 35px;
    }

    .location-text > p:not(.section-label):not(.address) {
        font-size: 15px;
    }

    .address {
        font-size: 14px;
        overflow-wrap: anywhere;
    }

    .map-container {
        height: 320px;
    }

    .location .primary-button {
        width: 100%;
    }

    .contact-description {
        font-size: 15px;
        margin: 20px auto 35px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .contact-button {
        min-width: 0;
        width: 100%;
        padding: 18px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }
    .references {
    margin-top: 50px;
    padding-top: 30px;
    }

    .references-list {
        row-gap: 14px;
    }

    .references-list span {
        font-size: 13px;
        padding: 0 12px;
    }
}

/* ================================
   KURUMSAL REFERANSLAR
================================ */

.references {
    margin-top: 70px;
    padding-top: 35px;
    border-top: 1px solid #ddd7cc;
    text-align: center;
}

.references-label {
    margin-bottom: 22px;
    color: #a47b42;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 3px;
}

.references-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.references-list span {
    color: #777168;
    font-size: 14px;
    font-weight: 500;
    padding: 0 20px;
    position: relative;
}

.references-list span:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -2px;
    color: #b8afa2;
}

/* ================================
   KÜÇÜK TELEFONLAR
================================ */

@media (max-width: 380px) {

    .nav-container {
        padding: 0 14px;
    }

    .logo {
        font-size: 17px;
    }

    .logo-img {
        height: 58px;
    }

    .logo span {
        font-size: 6px;
        letter-spacing: 2.5px;
    }

    .hero {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-brand-line {
        font-size: 15px;
    }

    .hero-brand-line img {
        height: 100px;
        max-width: 250px;
    }

    .hero h1:not(.hero-brand-line) {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 14px;
    }

    .room-image {
        height: 250px;
    }

    .room-content {
        padding: 20px;
    }

    .room-features span {
        font-size: 10px;
    }

    .map-container {
        height: 290px;
    }

}


/* ================================
   DOKUNMATİK CİHAZLAR
================================ */

@media (hover: none) {

    .primary-button:hover,
    .secondary-button:hover,
    .nav-button:hover,
    .room-card:hover,
    .contact-button:hover,
    .about-image:hover img,
    .room-card:hover .room-image img,
    .feature:hover .feature-image img {
        transform: none;
    }

}