﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', sans-serif;
    background: #f8f4ee;
    color: #ffffff;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 24px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

    .main-nav a {
        color: #ffffff;
        font-size: 18px;
        font-weight: 500;
        position: relative;
    }

        .main-nav a:hover {
            opacity: 0.85;
        }

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 16px 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-header {
    background: #7f8c63;
    color: #ffffff;
}

    .btn-header:hover {
        background: #6d7954;
    }

.btn-primary {
    background: #7f8c63;
    color: #ffffff;
}

    .btn-primary:hover {
        background: #6d7954;
    }

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.35);
    color: #ffffff;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(4px);
}

    .btn-secondary:hover {
        background: rgba(255,255,255,0.14);
    }

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(29, 23, 18, 0.38), rgba(29, 23, 18, 0.42)), url('../Images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(224,230,223,0.55) 0%, rgba(224,230,223,0.22) 22%, rgba(0,0,0,0) 42%);
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding-top: 120px;
}

.hero-location {
    letter-spacing: 6px;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 108px;
    line-height: 0.92;
    font-weight: 600;
    margin-bottom: 26px;
    color: #ffffff;
}

.hero-text {
    font-size: 20px;
    line-height: 1.6;
    max-width: 720px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* FOOTER */
.site-footer {
    background: #5f6b4d;
    color: #ffffff;
    padding: 50px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
}

.site-footer p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 82px;
    }

    .main-nav {
        gap: 22px;
    }

        .main-nav a,
        .phone-link {
            font-size: 16px;
        }

    .logo {
        font-size: 44px;
    }
}

@media (max-width: 992px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .header-right {
        flex-wrap: wrap;
    }

    .hero {
        min-height: 900px;
    }

    .hero-title {
        font-size: 72px;
    }

    .hero-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 18px 0;
    }

    .logo {
        font-size: 38px;
    }

    .hero-content {
        padding-top: 180px;
    }

    .hero-location {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-text {
        font-size: 17px;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-text {
        font-size: 16px;
    }
}
.hero {
    min-height: 100vh;
    background-image: linear-gradient(rgba(29, 23, 18, 0.38), rgba(29, 23, 18, 0.42)), url('../Images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.welcome-section {
    background: #f7f4ef;
    padding: 120px 0;
}

.welcome-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.welcome-image-wrap {
    position: relative;
    width: 48%;
    max-width: 540px;
    flex-shrink: 0;
}

.welcome-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.experience-badge {
    position: absolute;
    right: -26px;
    bottom: -26px;
    background: #6f7d5b;
    color: #ffffff;
    border-radius: 18px;
    padding: 24px 20px;
    min-width: 120px;
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.experience-number {
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 8px;
}

.experience-text {
    font-size: 15px;
    line-height: 1.4;
    color: rgba(255,255,255,0.92);
}

.welcome-content {
    width: 52%;
    max-width: 620px;
    color: #2f261f;
}

.section-eyebrow {
    font-size: 14px;
    letter-spacing: 5px;
    color: #8d7f67;
    font-weight: 600;
    margin-bottom: 18px;
}

.welcome-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 600;
    color: #2f261f;
    margin-bottom: 18px;
}

.title-line {
    width: 80px;
    height: 4px;
    background: #7f8c63;
    border-radius: 999px;
    margin-bottom: 28px;
}

.welcome-text {
    font-size: 20px;
    line-height: 1.8;
    color: #5a5148;
    margin-bottom: 20px;
}

.more-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 18px;
    font-weight: 500;
    color: #5f694f;
    text-decoration: none;
}

    .more-link:hover {
        opacity: 0.8;
    }

@media (max-width: 992px) {
    .welcome-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .welcome-image-wrap,
    .welcome-content {
        width: 100%;
        max-width: 100%;
    }

    .welcome-image {
        height: 500px;
    }

    .welcome-title {
        font-size: 46px;
    }

    .welcome-text {
        font-size: 18px;
    }

    .experience-badge {
        right: 16px;
        bottom: 16px;
    }
}
.rooms-section {
    background: #f7f4ef;
    padding: 40px 0 120px;
}

.rooms-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-eyebrow.center {
    text-align: center;
}

.rooms-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 66px;
    line-height: 1.05;
    font-weight: 600;
    color: #2f261f;
    margin-bottom: 18px;
}

.rooms-subtitle {
    font-size: 22px;
    line-height: 1.8;
    color: #6a6158;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.room-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.room-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 40px rgba(0,0,0,0.12);
}

.room-image-wrap {
    overflow: hidden;
}

.room-image {
    width: 100%;
    height: 255px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.room-card:hover .room-image {
    transform: scale(1.06);
}

.room-card-body {
    padding: 26px 22px 24px;
}

.room-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 600;
    color: #2f261f;
    margin-bottom: 14px;
}

.room-card-text {
    font-size: 18px;
    line-height: 1.7;
    color: #6a6158;
    margin-bottom: 18px;
}

.room-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4f5d3f;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

.room-link:hover {
    opacity: 0.8;
}

.rooms-button-wrap {
    text-align: center;
    margin-top: 42px;
}

.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 30px;
    border: 1.5px solid #7f8c63;
    border-radius: 999px;
    color: #5e694d;
    background: transparent;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.outline-button:hover {
    background: #7f8c63;
    color: #ffffff;
}

@media (max-width: 1200px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rooms-section {
        padding: 20px 0 90px;
    }

    .rooms-title {
        font-size: 46px;
    }

    .rooms-subtitle {
        font-size: 18px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .room-image {
        height: 240px;
    }

    .room-card-title {
        font-size: 30px;
    }

    .room-card-text,
    .room-link {
        font-size: 16px;
    }
}
.services-section {
    background: #f7f4ef;
    padding: 20px 0 120px;
}

.services-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.services-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 66px;
    line-height: 1.05;
    font-weight: 600;
    color: #2f261f;
    margin-bottom: 18px;
}

.services-subtitle {
    font-size: 22px;
    line-height: 1.8;
    color: #6a6158;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 22px 40px rgba(0,0,0,0.10);
    }

.service-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding: 24px 22px 24px;
}

.service-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #efeee9;
    color: #667255;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.service-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 600;
    color: #2f261f;
    margin-bottom: 14px;
}

.service-card-text {
    font-size: 18px;
    line-height: 1.7;
    color: #6a6158;
}

.services-button-wrap {
    text-align: center;
    margin-top: 42px;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 10px 0 90px;
    }

    .services-title {
        font-size: 46px;
    }

    .services-subtitle {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 230px;
    }

    .service-card-title {
        font-size: 30px;
    }

    .service-card-text {
        font-size: 16px;
    }

    .rooms-hero {
        width: 100%;
        min-height: 500px;
        background: url('../Images/odalarımız.JPG') center center / cover no-repeat;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rooms-hero-overlay {
        width: 100%;
        min-height: 500px;
        background: rgba(0, 0, 0, 0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 120px 20px 80px;
        box-sizing: border-box;
    }

    .rooms-hero-content {
        color: #fff;
        max-width: 900px;
        margin: 0 auto;
    }

    .rooms-subtitle {
        display: block;
        font-size: 14px;
        letter-spacing: 4px;
        margin-bottom: 14px;
        text-transform: uppercase;
    }

    .rooms-hero-content h1 {
        font-size: 72px;
        font-weight: 600;
        line-height: 1.1;
        margin: 0;
        font-family: 'Cormorant Garamond', serif;
    }

    .rooms-intro {
        background: #ffffff;
        padding: 70px 20px 80px;
    }

    .rooms-intro-container {
        max-width: 950px;
        margin: 0 auto;
        text-align: center;
    }

        .rooms-intro-container p {
            margin: 0;
            font-size: 17px;
            line-height: 1.9;
            color: #666666;
        }

    .room-list-section {
        background: #f7f7f4;
        padding: 40px 0 90px;
    }

    .room-row {
        max-width: 1280px;
        margin: 0 auto 70px auto;
        padding: 0 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 70px;
    }

        .room-row.reverse {
            flex-direction: row-reverse;
        }

    .room-text {
        flex: 1;
    }

    .room-badge {
        display: inline-block;
        background: #ecece7;
        color: #6b7456;
        border-radius: 999px;
        padding: 10px 18px;
        font-size: 18px;
        margin-bottom: 28px;
        font-family: 'Inter', sans-serif;
    }

    .room-text h2 {
        margin: 0 0 28px 0;
        font-size: 56px;
        line-height: 1.1;
        font-weight: 600;
        color: #1f2230;
        font-family: 'Cormorant Garamond', serif;
    }

    .room-text p {
        margin: 0 0 34px 0;
        font-size: 18px;
        line-height: 1.8;
        color: #4f5665;
        max-width: 620px;
        font-family: 'Inter', sans-serif;
    }

    .room-features {
        display: flex;
        gap: 70px;
        margin-bottom: 36px;
    }

        .room-features ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .room-features li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 18px;
            font-size: 17px;
            color: #4f5665;
            font-family: 'Inter', sans-serif;
        }

            .room-features li::before {
                content: "✓";
                position: absolute;
                left: 0;
                top: 0;
                color: #6b7456;
                font-weight: 700;
            }

    .room-btn {
        display: inline-block;
        background: #667254;
        color: #fff;
        text-decoration: none;
        padding: 18px 34px;
        border-radius: 999px;
        font-size: 18px;
        font-weight: 600;
        font-family: 'Inter', sans-serif;
        box-shadow: 0 8px 18px rgba(0,0,0,0.10);
        transition: 0.3s ease;
    }

        .room-btn:hover {
            background: #566146;
            transform: translateY(-2px);
        }

    .room-image {
        flex: 1;
        display: flex;
        justify-content: center;
    }

        .room-image img {
            width: 100%;
            max-width: 620px;
            height: 420px;
            object-fit: cover;
            border-radius: 28px;
            box-shadow: 0 12px 28px rgba(0,0,0,0.10);
        }

    @media (max-width: 991px) {
        .room-row,
        .room-row.reverse {
            flex-direction: column;
            padding: 0 24px;
            gap: 35px;
        }

        .room-text h2 {
            font-size: 42px;
        }

        .room-features {
            gap: 30px;
            flex-wrap: wrap;
        }

        .room-image img {
            height: auto;
        }
    }

    .room-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .room-btn-secondary {
        background: transparent;
        color: #667254;
        border: 2px solid #667254;
        box-shadow: none;
    }

        .room-btn-secondary:hover {
            background: #667254;
            color: #fff;
        }