/* --- Global Subpage Styles --- */

/* Subpage Hero */
.subpage-hero {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
}

.subpage-hero .hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.subpage-hero h1 {
    font-family: 'Crimson Text', serif;
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 0;
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

.subpage-hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}



.hero-content {
    text-align: left;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    margin-left: 40px;
    padding-left: 140px;
    padding-bottom: 50px;
}
/* Common Section Styles */
.section {
    padding: 100px 0;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4a373;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Crimson Text', serif;
    font-size: 3rem;
    color: #222;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.text-center-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.text-center-block .large-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-top: 20px;
    font-family: 'Crimson Text', serif;
    font-style: italic;
}

/* --- Rooms Page Styles --- */
.rooms-list-section {
    background-color: #f9f9f9;
}

.room-card-listing {
    display: flex;
    background: #fff;
    margin-bottom: 80px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.room-card-listing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.room-card-listing:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.room-card-listing:hover::before {
    opacity: 1;
}

.room-card-listing.reverse {
    flex-direction: row-reverse;
}

.room-listing-img {
    flex: 1.2;
    overflow: hidden;
    min-height: 500px;
    position: relative;
}

.room-listing-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.room-card-listing:hover .room-listing-img::after {
    opacity: 1;
}

.room-listing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.room-card-listing:hover .room-listing-img img {
    transform: scale(1.08);
}

.room-listing-info {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #fff;
}

.room-listing-info h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.room-features-icons {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #d4a373;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.room-features-icons .feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #d4a373;
    font-weight: 600;
}

.room-features-icons .feature-item svg {
    flex-shrink: 0;
    stroke: currentColor;
    color: #d4a373;
}

.room-features-icons .feature-separator {
    color: #ccc;
    font-weight: 400;
    margin: 0 4px;
}

.room-listing-info p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 35px;
    font-weight: 400;
}

.room-amenities {
    list-style: none;
    padding: 0;
    margin-bottom: 45px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.room-amenities li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #444;
    position: relative;
    padding-left: 28px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.room-amenities li:hover {
    color: #d4a373;
}

.room-amenities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #d4a373 0%, #c4955f 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(212, 163, 115, 0.3);
}

.room-listing-actions {
    margin-top: auto;
    padding-top: 20px;
}

.btn-detail.btn-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    border: 2px solid transparent;
    padding: 16px 42px;
    text-align: center;
    width: max-content;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
}

.btn-detail.btn-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b8945f 0%, #9d7a4a 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    pointer-events: none;
}

.btn-detail.btn-dark:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.4);
    border-color: #d4a373;
}

.btn-detail.btn-dark:hover::before {
    left: 0;
    z-index: -1;
}


/* --- Restaurant Page Styles --- */
/* Restaurant New Layout */
.restaurant-details-new {
    padding: 100px 0;
    background-color: #fff;
}

.restaurant-layout-new {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* Left: Large Vertical Image */
.restaurant-image-large-new {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.restaurant-image-large-new img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.restaurant-image-large-new:hover img {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

/* Right: Content Area */
.restaurant-content-new {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.restaurant-content-new .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4a373;
    font-weight: 600;
    margin-bottom: 10px;
}

.restaurant-content-new .section-title {
    font-family: 'Crimson Text', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.restaurant-intro-new {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 0;
}

/* Small Image */
.restaurant-image-small-new {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.restaurant-image-small-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.restaurant-image-small-new img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.restaurant-image-small-new:hover img {
    transform: scale(1.05);
}

/* Continued Description */
.restaurant-continued-new {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #666;
    margin-top: 0;
}

/* Old Restaurant Styles (kept for backward compatibility) */
.food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.food-item {
    position: relative;
    overflow: hidden;
}

.food-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.food-item:hover img {
    transform: scale(1.03);
}

.food-info {
    padding: 25px 0;
    text-align: center;
}

.food-info h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.food-info p {
    font-family: var(--font-body);
    color: #777;
    font-size: 1rem;
}


/* --- Kaş / Activities Styles --- */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.activity-card {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-10px);
}

.activity-img {
    height: 250px;
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-img img {
    transform: scale(1.1);
}

.activity-content {
    padding: 30px;
    text-align: center;
}

.activity-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activity-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* --- Activities Page Styles --- */
.activities-page-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #fafafa 50%, #fff 100%);
}

.activities-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.activities-intro .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4a373;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.activities-intro .section-title {
    font-family: 'Crimson Text', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.activities-description {
    
    font-size: 1.15rem;
    line-height: 1.9;
    color: #666;
}

.activities-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

.activity-page-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 500px;
}

.activity-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #d4a373 0%, #c4955f 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.activity-page-card:hover::before {
    opacity: 1;
}

.activity-page-card:hover {
    transform: translateX(10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* Left Image Layout */
.activity-left {
    grid-template-columns: 500px 1fr;
}

.activity-left .activity-page-image {
    order: 1;
}

.activity-left .activity-page-content {
    order: 2;
}

/* Right Image Layout */
.activity-right {
    grid-template-columns: 1fr 500px;
}

.activity-right .activity-page-image {
    order: 2;
}

.activity-right .activity-page-content {
    order: 1;
}

.activity-page-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    background: #1a1a1a;
}

.activity-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    opacity: 0.95;
}

.activity-page-card:hover .activity-page-image img {
    transform: scale(1.15);
    opacity: 1;
}

.activity-number {
    position: absolute;
    top: 30px;
    left: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    z-index: 1;
    transition: all 0.4s ease;
}

.activity-right .activity-number {
    right: 30px;
    left: auto;
}

.activity-page-card:hover .activity-number {
    color: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.activity-page-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    position: relative;
}

.activity-category {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4a373;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(212, 163, 115, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(212, 163, 115, 0.2);
}

.activity-page-content h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.activity-page-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4a373 0%, #c4955f 100%);
    border-radius: 2px;
}

.activity-page-content p {
    
    font-size: 1.05rem;
    line-height: 1.95;
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .activity-left,
    .activity-right {
        grid-template-columns: 450px 1fr;
    }

    .activity-page-content {
        padding: 50px 40px;
    }

    .activity-number {
        font-size: 5rem;
    }
}

@media (max-width: 900px) {
    .activities-page-section {
        padding: 80px 0;
    }

    .activities-intro {
        margin-bottom: 70px;
    }

    .activities-intro .section-title {
        font-size: 2.8rem;
    }

    .activities-page-grid {
        gap: 60px;
    }

    .activity-left,
    .activity-right {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .activity-left .activity-page-image,
    .activity-right .activity-page-image {
        order: 1;
        min-height: 400px;
        height: 400px;
    }

    .activity-left .activity-page-content,
    .activity-right .activity-page-content {
        order: 2;
    }

    .activity-number {
        font-size: 4.5rem;
        top: 20px;
        left: 20px;
    }

    .activity-right .activity-number {
        right: 20px;
        left: auto;
    }

    .activity-page-content {
        padding: 45px 35px;
    }

    .activity-page-content h3 {
        font-size: 2.3rem;
    }
}

@media (max-width: 600px) {
    .activities-page-section {
        padding: 60px 0;
    }

    .activities-intro {
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .activities-intro .section-title {
        font-size: 2.2rem;
    }

    .activities-description {
        font-size: 1rem;
    }

    .activities-page-grid {
        gap: 50px;
    }

    .activity-page-card {
        min-height: auto;
    }

    .activity-page-card:hover {
        transform: translateX(0) translateY(-5px);
    }

    .activity-page-image {
        min-height: 350px;
        height: 350px;
    }

    .activity-number {
        font-size: 4rem;
        top: 15px;
        left: 15px;
    }

    .activity-right .activity-number {
        right: 15px;
        left: auto;
    }

    .activity-page-content {
        padding: 35px 25px;
    }

    .activity-category {
        font-size: 0.65rem;
        padding: 6px 16px;
        margin-bottom: 15px;
    }

    .activity-page-content h3 {
        font-size: 2rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .activity-page-content h3::after {
        width: 50px;
        height: 2px;
    }

    .activity-page-content p {
        font-size: 0.95rem;
        line-height: 1.85;
    }
}


/* --- Galeri Page Styles --- */
.gallery-grid {
    column-count: 3;
    column-gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    margin-bottom: 20px;
    break-inside: avoid;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 2px;
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: brightness(0.9);
}


/* --- Contact Page Styles --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-box h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #222;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.contact-details li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
    display: flex;
    align-items: center;
    font-family: var(--font-body);
}

.contact-details li svg {
    margin-right: 20px;
    color: #d4a373;
    min-width: 24px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d4a373;
    background-color: #fff;
    outline: none;
}

.contact-form button {
    background: #222;
    color: #fff;
    padding: 18px 50px;
    border: none;
    cursor: pointer;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.contact-form button:hover {
    background: #d4a373;
    color: #fff;
}

/* --- Contact Page (New / No Mail Form) --- */
.contact-page-section-new {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 60%, #ffffff 100%);
}

.contact-page-intro-new {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 70px;
}

.contact-page-description-new {
    
    font-size: 1.15rem;
    line-height: 1.9;
    color: #666;
    margin-top: 22px;
}

.contact-page-layout-new {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.contact-page-panel-new {
    background: #fff;
    border-radius: 16px;
    padding: 45px 40px;
    box-shadow: 0 15px 55px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 163, 115, 0.12);
}

.contact-cards-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.contact-card-new {
    display: flex;
    gap: 16px;
    padding: 18px 18px;
    border-radius: 14px;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 163, 115, 0.25);
}

.contact-card-icon-new {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 163, 115, 0.12);
    color: #d4a373;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
}

.contact-card-icon-new svg {
    width: 22px;
    height: 22px;
}

.contact-card-content-new {
    min-width: 0;
}

.contact-card-label-new {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-card-value-new {
    
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.5;
    text-decoration: none;
}

a.contact-card-value-new:hover {
    color: #d4a373;
}

.contact-actions-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 26px;
}

.contact-action-btn-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 26, 0.12);
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.contact-action-btn-new.primary {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.contact-action-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 163, 115, 0.35);
}

.contact-action-btn-new.primary:hover {
    background: #d4a373;
    border-color: #d4a373;
}

.contact-action-btn-new .arrow-animated {
    transition: transform 0.25s ease;
}

.contact-action-btn-new:hover .arrow-animated {
    transform: translateX(5px);
}

.contact-hours-new {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-hours-new h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 18px;
}

.contact-hours-grid-new {
    display: grid;
    gap: 12px;
}

.contact-hours-row-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.04);
    
    color: #555;
}

.contact-hours-row-new strong {
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.contact-note-new {
    margin-top: 18px;
    
    font-size: 0.95rem;
    line-height: 1.8;
    color: #777;
}

.contact-map-card-new {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 55px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 163, 115, 0.12);
    position: sticky;
    top: 120px;
}

.contact-map-header-new {
    padding: 28px 28px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-map-header-new h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: 600;
    margin: 0 0 6px;
}

.contact-map-header-new p {
    margin: 0;
    
    color: #666;
    line-height: 1.7;
}

.contact-map-embed-new iframe {
    display: block;
    width: 100%;
}

@media (max-width: 1200px) {
    .contact-page-layout-new {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-map-card-new {
        position: relative;
        top: 0;
    }
}

@media (max-width: 900px) {
    .contact-page-section-new {
        padding: 80px 0;
    }

    .contact-page-intro-new {
        margin-bottom: 55px;
        padding: 0 20px;
    }

    .contact-page-panel-new {
        padding: 38px 30px;
    }

    .contact-actions-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-page-section-new {
        padding: 60px 0;
    }

    .contact-page-intro-new .section-title {
        font-size: 2.2rem;
    }

    .contact-page-description-new {
        font-size: 1rem;
    }

    .contact-page-panel-new {
        padding: 32px 22px;
        border-radius: 14px;
    }

    .contact-card-new {
        padding: 16px 14px;
    }

    .contact-card-value-new {
        font-size: 1.02rem;
    }

    .contact-map-header-new {
        padding: 22px 22px 14px;
    }
}


/* --- About Page Styles (Original Carruba Style) --- */
.about-details-original {
    background-color: #fff;
    padding: 100px 0 120px;
}

 .container {
    max-width: 1500px;
}

.about-details-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.6fr;
    gap: 70px;
    align-items: start;
}

.about-details-media {
    position: relative;
}

.about-details-media-inner {
    position: sticky;
    top: 120px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
}

.about-details-media-inner img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    display: block;
}

.about-details-content {
    min-width: 0;
}

.about-details-below {
    margin-top: 40px;
}

.about-title-section {
    text-align: left;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.about-main-title {
    font-family: 'Crimson Text', serif;
    font-size: 4.5rem;
    color: #1a1a1a;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;
}

.about-main-content {
    max-width: none;
    margin: 0;
    padding: 0;
}

.about-main-content p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 2.2;
    color: #333;
    margin-bottom: 35px;
    text-align: left;
    font-weight: 500;
}

.about-intro {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #555;
    margin-bottom: 50px !important;
    text-align: left !important;
    line-height: 2 !important;
    font-weight: bold;
    max-width: 900px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.about-final {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #444;
    font-size: 1.2rem;
    line-height: 2.1;
}

.about-image-wrapper {
    margin: 50px 0;
    text-align: center;
}

.about-content-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}


/* --- Responsive Styles --- */
@media (max-width: 900px) {
    .subpage-hero {
        height: 280px;
    }

    .subpage-hero h1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-content {
        margin-left: 0;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 40px;
        text-align: center;
    }

    .room-card-listing,
    .room-card-listing.reverse {
        flex-direction: column;
        margin-bottom: 50px;
        border-radius: 16px;
    }

    .room-listing-img {
        min-height: 300px;
    }

    .room-listing-info {
        padding: 45px 30px;
    }

    .room-listing-info h2 {
        font-size: 2rem;
        margin-bottom: 18px;
    }

    .room-features-icons {
        font-size: 0.75rem;
        margin-bottom: 25px;
        gap: 8px;
    }

    .room-features-icons .feature-item {
        gap: 5px;
    }

    .room-features-icons .feature-item svg {
        width: 14px;
        height: 14px;
    }

    .room-features-icons .feature-separator {
        margin: 0 3px;
    }

    .room-listing-info p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .room-amenities {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 35px;
    }

    .btn-detail.btn-dark {
        padding: 14px 35px;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        column-count: 2;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-details-original {
        padding: 60px 0 80px;
    }

    .about-details-original .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-details-media-inner {
        position: relative;
        top: auto;
    }

    .about-details-media-inner img {
        height: 360px;
    }

    .about-title-section {
        margin-bottom: 50px;
        padding-bottom: 30px;
    }

    .about-main-title {
        font-size: 3rem;
    }

    .about-main-content {
        max-width: 100%;
        padding: 0 30px;
    }

    .about-main-content p {
        font-size: 1.05rem;
        line-height: 2;
        margin-bottom: 30px;
    }

    .about-intro {
        font-size: 1.3rem;
        margin-bottom: 40px !important;
    }

    .about-final {
        margin-top: 50px;
        padding-top: 40px;
        font-size: 1.1rem;
    }

    .about-image-wrapper {
        margin: 40px 0;
    }

    .about-content-image {
        max-width: 100%;
    }

    .subpage-hero h1 {
        font-size: 3.5rem;
    }

}

@media (max-width: 600px) {
    .subpage-hero {
        height: 250px;
        min-height: 250px;
    }

    .subpage-hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1.5px;
    }

    .hero-content {
        margin-left: 0;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 30px;
        text-align: center;
    }

    .food-grid {
        grid-template-columns: 1fr;
    }

    .food-item img {
        height: 300px;
    }

    /* Restaurant New Layout Responsive */
    .restaurant-layout-new {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .restaurant-image-large-new {
        position: relative;
        top: 0;
    }

    .restaurant-image-large-new img {
        height: 500px;
    }

    .restaurant-content-new .section-title {
        font-size: 2.8rem;
    }

    .gallery-grid {
        column-count: 1;
    }

    .about-content-image img {
        height: 250px;
    }

    .about-story-image img {
        height: 250px;
    }

    .about-details-original {
        padding: 40px 0 60px;
    }

    .about-title-section {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .about-main-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .about-main-content {
        padding: 0 20px;
    }

    .about-main-content p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .about-intro {
        font-size: 1.1rem;
        margin-bottom: 30px !important;
        line-height: 1.7 !important;
    }

    .about-final {
        margin-top: 40px;
        padding-top: 30px;
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-image-wrapper {
        margin: 30px 0;
    }

    .subpage-hero {
        height: 220px;
        min-height: 220px;
    }

    .subpage-hero h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero-content {
        margin-left: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 25px;
        text-align: center;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* ============================================
   ROOM DETAIL PAGE STYLES - NEW DESIGN
   ============================================ */

/* Room Detail Hero */
.room-detail-hero-new {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    height: 70vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.room-detail-hero-new .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    padding-bottom: 40px;
}

.room-detail-hero-image-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.room-detail-hero-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-detail-hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.room-detail-hero-content-new {
    position: relative;
    z-index: 2;
    padding: 0;
    color: #fff;
}

.back-link-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-link-new:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.back-link-new svg {
    width: 18px;
    height: 18px;
}

.room-detail-hero-content-new h1 {
    font-family: 'Crimson Text', serif;
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    z-index: 10;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.btn-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-gallery:hover::before {
    left: 100%;
}

.btn-gallery:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 1px 0 rgba(255, 255, 255, 0.3) inset;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-gallery:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-gallery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gallery:hover .btn-gallery-icon {
    transform: rotate(5deg) scale(1.1);
}

.btn-gallery-text {
    position: relative;
    transition: letter-spacing 0.4s ease;
}

.btn-gallery:hover .btn-gallery-text {
    letter-spacing: 2.5px;
}

.btn-gallery-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-gallery:hover .btn-gallery-count {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-gallery svg {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}


/* Room Info Section */
.room-detail-info-section-new {
    padding-top: 20px;
}

/* Room Features */
.room-detail-features-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 2px solid #e8e8e8;
}

.room-feature-card-new {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 30px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid #e8e8e8;
}

.room-feature-card-new:hover {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: #d4a373;
}

.room-feature-card-new svg {
    color: #d4a373;
    flex-shrink: 0;
}

.room-feature-card-new div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-label-new {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.feature-value-new {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

/* Room Description */
.room-detail-description-new {
    margin-bottom: 80px;
    max-width: 900px;
}

.room-detail-description-new h2 {
    font-family: 'Crimson Text', serif;
    font-size: 3.2rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.room-detail-description-new p {
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 2.1;
    color: #555;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Room Amenities */
.room-detail-amenities-new {
    margin-bottom: 80px;
}

.room-detail-amenities-new h2 {
    font-family: 'Crimson Text', serif;
    font-size: 3.2rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 45px;
    letter-spacing: 1px;
}

.amenities-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.amenity-item-new {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 25px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #444;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.amenity-item-new:hover {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    transform: translateX(8px);
    border-color: #d4a373;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.amenity-item-new svg {
    color: #d4a373;
    flex-shrink: 0;
}

/* Room Gallery */
.room-detail-gallery-new {
    margin-bottom: 50px;
    scroll-margin-top: 120px;
}

.gallery-header {
    margin-bottom: 50px;
}

.room-detail-gallery-new h2 {
    font-family: 'Crimson Text', serif;
    font-size: 3.2rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.gallery-header p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #777;
    margin: 0;
}

.room-gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item-new {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item-new:hover img {
    transform: scale(1.15);
}


/* Responsive Room Detail */
@media (max-width: 900px) {
    .room-detail-hero-new {
        height: 50vh;
        min-height: 400px;
    }

    .room-detail-hero-new .container {
        padding-bottom: 50px;
    }
    
    .room-detail-hero-content-new {
        padding: 0 20px;
    }

    .room-detail-hero-content-new h1 {
        font-size: 3rem;
        letter-spacing: 1px;
        line-height: 1.3;
        margin-bottom: 25px;
    }
    
    .hero-actions {
        justify-content: center;
        margin-top: 20px;
    }

    .room-detail-features-new {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
        padding-bottom: 50px;
    }

    .amenities-grid-new {
        grid-template-columns: 1fr;
    }

    .room-gallery-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .room-detail-description-new h2,
    .room-detail-amenities-new h2,
    .room-detail-gallery-new h2 {
        font-size: 2.5rem;
    }

    .room-detail-info-section-new {
        padding: 20px 0 70px;
    }
}

@media (max-width: 600px) {
    .room-detail-hero-new {
        height: 50vh;
        min-height: 380px;
        max-height: 500px;
    }

    .room-detail-hero-new .container {
        padding-bottom: 35px;
    }
    
    .room-detail-hero-content-new {
        padding: 0 20px;
        text-align: center;
    }

    .room-detail-hero-content-new h1 {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
        line-height: 1.3;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .hero-actions {
        justify-content: center;
        margin-top: 15px;
    }

    .btn-gallery {
        padding: 14px 28px;
        font-size: 0.8rem;
        gap: 10px;
        letter-spacing: 1.5px;
    }
    
    .btn-gallery-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .btn-gallery-text {
        font-size: 0.8rem;
    }
    
    .btn-gallery-count {
        min-width: 22px;
        height: 22px;
        padding: 0 7px;
        font-size: 0.7rem;
    }
    
    .room-detail-hero-overlay-new {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    }

    .room-detail-info-section-new {
        padding: 20px 0 50px;
    }

    .room-detail-features-new {
        margin-bottom: 50px;
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .room-detail-hero-new {
        height: 45vh;
        min-height: 350px;
        max-height: 450px;
    }

    .room-detail-hero-new .container {
        padding-bottom: 30px;
    }
    
    .room-detail-hero-content-new {
        padding: 0 15px;
    }

    .room-detail-hero-content-new h1 {
        font-size: 1.9rem;
        letter-spacing: 0.3px;
        line-height: 1.25;
        margin-bottom: 18px;
    }

    .btn-gallery {
        padding: 12px 24px;
        font-size: 0.75rem;
        gap: 8px;
        letter-spacing: 1px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .btn-gallery-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .btn-gallery-text {
        font-size: 0.75rem;
    }
    
    .btn-gallery-count {
        min-width: 20px;
        height: 20px;
        padding: 0 6px;
        font-size: 0.65rem;
    }

    .room-feature-card-new {
        padding: 25px 20px;
    }

    .feature-value-new {
        font-size: 1.5rem;
    }

    .room-detail-description-new {
        margin-bottom: 60px;
    }

    .room-detail-description-new h2,
    .room-detail-amenities-new h2,
    .room-detail-gallery-new h2 {
        font-size: 2rem;
    }

    .room-detail-description-new p {
        font-size: 1.1rem;
    }

    .room-gallery-grid-new {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* --- Kaş Page Styles --- */

/* Kaş Introduction Section */
.kas-intro-section {
    padding: 100px 0 80px;
    background: #fff;
}

.kas-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.kas-intro-text {
    
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
    margin-top: 30px;
}

/* Kaş History Section */
.kas-history-section {
    padding: 80px 0;
    background: #fafafa;
}

.kas-history-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.kas-history-image {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.kas-history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.kas-history-layout:hover .kas-history-image img {
    transform: scale(1.05);
}

.kas-history-content {
    padding: 20px 0;
}

.kas-history-content p {
    
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}

.kas-history-content p:last-child {
    margin-bottom: 0;
}

/* Kaş Features Section */
.kas-features-section {
    padding: 100px 0;
    background: #fff;
}

.kas-features-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.kas-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.kas-feature-card {
    padding: 40px;
    background: #fafafa;
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 163, 115, 0.1);
}

.kas-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 163, 115, 0.3);
}

.kas-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    color: #d4a373;
}

.kas-feature-icon svg {
    width: 100%;
    height: 100%;
}

.kas-feature-card h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 15px;
}

.kas-feature-card p {
    
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Kaş Attractions Section */
.kas-attractions-section {
    padding: 100px 0;
    background: #fafafa;
}

.kas-attractions-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.kas-attractions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.kas-attraction-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.kas-attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.kas-attraction-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.kas-attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.kas-attraction-card:hover .kas-attraction-image img {
    transform: scale(1.1);
}

.kas-attraction-content {
    padding: 35px;
}

.kas-attraction-content h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 15px;
}

.kas-attraction-content p {
    
    font-size: 1.05rem;
    line-height: 1.85;
    color: #555;
    margin: 0;
}

/* Kaş Activities CTA */
.kas-activities-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    text-align: center;
}

.kas-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.kas-cta-content h2 {
    font-family: 'Crimson Text', serif;
    font-size: 3rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
}

.kas-cta-content p {
    
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.btn-kas-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: #d4a373;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-kas-cta:hover {
    background: #c4955f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.3);
}

.btn-kas-cta .arrow-animated {
    transition: transform 0.3s ease;
}

.btn-kas-cta:hover .arrow-animated {
    transform: translateX(5px);
}

/* Kaş Page Responsive */
@media (max-width: 1200px) {
    .kas-history-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .kas-history-image {
        height: 400px;
    }

    .kas-features-grid {
        gap: 30px;
    }

    .kas-attractions-grid {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .kas-intro-section,
    .kas-history-section,
    .kas-features-section,
    .kas-attractions-section,
    .kas-activities-cta {
        padding: 80px 0;
    }

    .kas-intro-text {
        font-size: 1.1rem;
    }

    .kas-history-image {
        height: 350px;
    }

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

    .kas-feature-card {
        padding: 35px;
    }

    .kas-attractions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kas-cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .kas-intro-section,
    .kas-history-section,
    .kas-features-section,
    .kas-attractions-section,
    .kas-activities-cta {
        padding: 60px 0;
    }

    .kas-intro-content,
    .kas-features-intro,
    .kas-attractions-intro {
        padding: 0 20px;
    }

    .kas-intro-text {
        font-size: 1rem;
    }

    .kas-history-image {
        height: 300px;
    }

    .kas-history-content {
        padding: 0 20px;
    }

    .kas-history-content p {
        font-size: 1rem;
    }

    .kas-feature-card {
        padding: 30px 25px;
    }

    .kas-feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .kas-feature-card h3 {
        font-size: 1.6rem;
    }

    .kas-attraction-image {
        height: 250px;
    }

    .kas-attraction-content {
        padding: 30px 25px;
    }

    .kas-attraction-content h3 {
        font-size: 1.7rem;
    }

    .kas-cta-content {
        padding: 0 20px;
    }

    .kas-cta-content h2 {
        font-size: 2rem;
    }

    .kas-cta-content p {
        font-size: 1rem;
    }

    .btn-kas-cta {
        padding: 15px 30px;
        font-size: 0.75rem;
    }
}

/* LightGallery – alt thumbnail şeridi (minik resimler) */
.lg-thumb-outer {
    background: rgba(0, 0, 0, 0.85) !important;
    padding: 12px 16px !important;
    gap: 10px !important;
    max-height: 100px !important;
}
.lg-thumb-item {
    width: 64px !important;
    height: 64px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 2px solid transparent !important;
    transition: border-color 0.2s ease, opacity 0.2s ease !important;
    opacity: 0.7 !important;
}
.lg-thumb-item:hover {
    opacity: 1 !important;
}
.lg-thumb-item.lg-current,
.lg-thumb-item.active {
    border-color: #d4a373 !important;
    opacity: 1 !important;
}
.lg-thumb-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
@media (max-width: 768px) {
    .lg-thumb-outer {
        padding: 8px 12px !important;
        max-height: 72px !important;
        gap: 6px !important;
    }
    .lg-thumb-item {
        width: 48px !important;
        height: 48px !important;
        border-radius: 6px !important;
    }
}

/* LightGallery close button - mobile visibility fix */
@media (max-width: 768px) {
    /* Force toolbar to be visible on mobile */
    .lg-toolbar {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 99999 !important;
    }

    /* Close button - multiple selectors for maximum compatibility */
    .lg-toolbar .lg-close,
    .lg-close,
    .lg .lg-close,
    .lg .lg-toolbar .lg-close,
    body .lg-toolbar .lg-close {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        align-items: center !important;
        justify-content: center !important;
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
        background: rgba(0, 0, 0, 0.85) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 50% !important;
        right: 16px !important;
        top: 16px !important;
        left: auto !important;
        bottom: auto !important;
        z-index: 999999 !important;
        cursor: pointer !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5) !important;
        transition: all 0.3s ease !important;
        pointer-events: auto !important;
    }

    /* Close button hover effect */
    .lg-toolbar .lg-close:hover,
    .lg-close:hover,
    .lg .lg-close:hover {
        background: rgba(0, 0, 0, 0.95) !important;
        transform: scale(1.1) !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
    }

    /* Close button icon (X) - ensure it's visible */
    .lg-toolbar .lg-close:before,
    .lg-toolbar .lg-close:after,
    .lg-close:before,
    .lg-close:after,
    .lg .lg-close:before,
    .lg .lg-close:after {
        content: '' !important;
        position: absolute !important;
        width: 24px !important;
        height: 3px !important;
        background: #fff !important;
        border-radius: 2px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .lg-toolbar .lg-close:before,
    .lg-close:before,
    .lg .lg-close:before {
        transform: rotate(45deg) !important;
    }

    .lg-toolbar .lg-close:after,
    .lg-close:after,
    .lg .lg-close:after {
        transform: rotate(-45deg) !important;
    }
}

/* Additional fix for very small screens */
@media (max-width: 600px) {
    .lg-toolbar .lg-close,
    .lg-close,
    .lg .lg-close {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        min-height: 52px !important;
        right: 12px !important;
        top: 12px !important;
    }

    .lg-toolbar .lg-close:before,
    .lg-toolbar .lg-close:after,
    .lg-close:before,
    .lg-close:after {
        width: 26px !important;
        height: 3.5px !important;
    }
}

/* GLightbox Custom Styles */
.glightbox-clean .gslide-description {
    background: rgba(0, 0, 0, 0.8);
    color: var(--color-white);
    font-family: var(--font-body);
    padding: 15px 20px;
    border-radius: 4px;
}

.glightbox-clean .gslide-media {
    border-radius: 8px;
    overflow: hidden;
}

.glightbox-clean .gslide-image img {
    border-radius: 8px;
}

/* GLightbox Navigation Buttons */
.glightbox-clean .gnext,
.glightbox-clean .gprev {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.glightbox-clean .gclose {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.glightbox-clean .gclose:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* GLightbox Counter */
.glightbox-clean .gslide-counter {
    color: var(--color-white);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .glightbox-clean .gnext,
    .glightbox-clean .gprev {
        width: 40px;
        height: 40px;
    }

    .glightbox-clean .gclose {
        width: 40px;
        height: 40px;
    }

    /* Restaurant New Layout Responsive */
    .restaurant-layout-new {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .restaurant-image-large-new {
        position: relative;
        top: 0;
    }

    .restaurant-image-large-new img {
        height: 500px;
    }

    .restaurant-content-new .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .restaurant-details-new {
        padding: 60px 0;
    }

    .restaurant-layout-new {
        gap: 40px;
    }

    .restaurant-image-large-new img {
        height: 400px;
    }

    .restaurant-content-new .section-title {
        font-size: 2.2rem;
    }

    .restaurant-intro-new,
    .restaurant-continued-new {
        font-size: 1rem;
    }

    .restaurant-image-small-new img {
        height: 250px;
    }
}

/* --- Gallery Page Styles --- */
.gallery-page-section {
    padding: 100px 0;
    background: #fafafa;
}

.gallery-page-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

.gallery-page-intro .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4a373;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.gallery-page-intro .section-title {
    font-family: 'Crimson Text', serif;
    font-size: 3rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.25;
}

.gallery-page-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #555;
    margin: 0;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-page-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    cursor: pointer;
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-page-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-page-item:hover img {
    transform: scale(1.1);
}

.gallery-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-page-item:hover .gallery-page-overlay {
    opacity: 1;
}

.gallery-page-overlay svg {
    width: 50px;
    height: 50px;
    color: #fff;
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Gallery Page Responsive */
@media (max-width: 1200px) {
    .gallery-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .gallery-page-section {
        padding: 80px 0;
    }

    .gallery-page-intro {
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .gallery-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .gallery-page-section {
        padding: 60px 0;
    }

    .gallery-page-intro {
        margin-bottom: 50px;
    }

    .gallery-page-intro .section-title {
        font-size: 2.2rem;
    }

    .gallery-page-description {
        font-size: 1rem;
    }

    .gallery-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-page-overlay svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .gallery-page-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}