/* 4K and Large Screen Optimizations */

/* 4K Media Query - Ultra High Resolution Displays */
@media (min-width: 2560px) {
    .containerx {
        padding: clamp(60px, 8vw, 126px) clamp(20px, 12vw, 240px);
    }

    /* Background fixed size */
    .moppet {
        background-image: url('/images/Rectangle 16.png');
        background-size: cover;
        background-position: center;
        width: 1440px;
        height: 810px;        
        position: relative;
    }

    /* Yellow ring */
    .moppet-ring-yellow {
        position: absolute;
        left: 46%;
        transform: translate(-50%, -50%);
        width: clamp(180px, 28vw, 390px);
        height: clamp(180px, 28vw, 390px);
        border: clamp(20px, 4vw, 80px) solid #FFD400;
        border-radius: 50%;
        pointer-events: none;
        z-index: 1;
    }

    /* Green square */
    .moppet-ring-green {
        position: absolute;
        width: clamp(120px, 21vw, 301px);
        height: clamp(120px, 21vw, 301px);
        border: clamp(20px, 5vw, 60px) solid #37C710;
        pointer-events: none;
        z-index: 1;
    }

    /* Text box */
    .moppet-overlay {
        position: absolute;
        transform: translate(-50%, -50%);
        width: 603px;
        height: 418px;
        padding: clamp(24px, 4vw, 64px);
        background-color: #4F055C;
        color: white;
        border-radius: 75px;
        z-index: 2;
        text-align: left;
        box-sizing: border-box;
    }

        .moppet-overlay h1 {
            width: 475px;
            height: 109px;
            flex-shrink: 0;
            color: var(--White, #FFF);
            font-family: var(--Typeface-Family-Display, "Playfair Display");
            font-size: var(--Typeface-Size-D4, 42px);
            font-style: normal;
            font-weight: 400;
            line-height: var(--Typeface-Line-Height-D4, 56px);
            letter-spacing: var(--Typeface-Spacing-D4, 0);
        }

        .moppet-overlay p {
            flex-shrink: 0;
            color: var(--White, #FFF);
            font-family: var(--Typeface-Family-Text, Montserrat);
            font-size: var(--Typeface-Size-Body-Plus, 18px);
            font-style: normal;
            font-weight: 400;
            line-height: var(--Typeface-Line-Height-Body-Plus, 22px);
            letter-spacing: var(--Typeface-Spacing-Body-Plus, 0.15px);
        }

    .moppet-more {
        cursor: pointer;
        margin-top: clamp(20px, 3vw, 50px);
        font-size: clamp(0.875rem, 1.2vw, 1.125rem);
    }
}

/* Large Desktop (1441px - 2559px) */
@media (min-width: 1441px) and (max-width: 2559px) {
    .figma-offer-row {
        max-width: 1440px;
    }

    .figma-offer-image-bg,
    .figma-offer-content-box {
        width: 720px;
    }

    
    .form-control {
        max-width: 700px;
        height: 52px;
    }
    
    .form-control-message {
        max-width: 1400px;
        height: 160px;
    }
    
    .btn-send {
        max-width: 700px;
        height: 52px;
    }
}

/* Desktop optimizations (1025px+) */
@media (min-width: 1025px) {
    

    .hotel-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        justify-content: center;
        gap: 16px;
        width: 100%;
        max-width: 1920px;
        padding: 0 20px;
    }

    .hotel-card:hover .discover-btn {
        opacity: 1;
        transform: translateX(-50%);
    }

    .concept-frame {
        width: 1440px;
        height: 700px;
        background-color: var(--bg-color);
        border-radius: 8px;
        display: flex;
        position: relative;
    }

    .concept-image {
        width: 720px;
        height: 700px;
        overflow: hidden;
        border-radius: 0 8px 8px 0;
    }
}

/* Ultra Large Screens (3440px+) - Ultra-wide monitors */
@media (min-width: 3440px) {
    .containerx {
        padding: clamp(80px, 10vw, 160px) clamp(40px, 15vw, 320px);
    }

    .card {
        padding: clamp(60px, 5vw, 100px);
        max-width: 2200px;
        border-radius: 24px;
    }
    
    .form-control {
        max-width: clamp(800px, 40vw, 1200px);
        height: clamp(56px, 4vw, 72px);
        padding: clamp(12px, 1.5vw, 24px) clamp(20px, 1.8vw, 32px);
        font-size: clamp(18px, 1.2vw, 24px);
        border-radius: 20px;
    }
    
    .form-control-message {
        max-width: clamp(1600px, 80vw, 2200px);
        height: clamp(180px, 10vw, 240px);
        padding: clamp(20px, 1.8vw, 32px);
        font-size: clamp(18px, 1.2vw, 24px);
        border-radius: 20px;
    }
    
    .btn-send {
        max-width: clamp(800px, 40vw, 1200px);
        height: clamp(56px, 4vw, 72px);
        padding: clamp(12px, 1.5vw, 20px) clamp(36px, 2.5vw, 48px);
        font-size: clamp(18px, 1.2vw, 24px);
        border-radius: 36px;
    }
    
    .form-check-label {
        font-size: clamp(20px, 1.4vw, 26px);
        line-height: clamp(24px, 1.8vw, 32px);
    }

    .contact-form-container {
        padding: clamp(24px, 2.5vw, 48px);
    }

    .footer-main-grid {
        max-width: 2400px;
        gap: 80px;
        padding: 80px 0px 0 60px;
    }

    .footer-main-logo {
        width: 280px;
    }

    .footer-title {
        font-size: 38px;
    }

    .footer-col ul li a {
        font-size: 20px;
    }

    .footer-newsletter-btn {
        width: 460px;
        font-size: 22px;
        padding: 14px 120px;
    }
}

/* Contact Form 4K Optimizations */
@media (min-width: 2560px) {
/*    .card {
        padding: clamp(50px, 4vw, 80px);
        max-width: 1800px;
        border-radius: 20px;
    }*/
    
    .form-control {
        max-width: clamp(653px, 35vw, 900px);
        height: clamp(48px, 3vw, 60px);
        padding: clamp(10px, 1vw, 20px) clamp(16px, 1.2vw, 24px);
        font-size: clamp(16px, 1vw, 20px);
        border-radius: 16px;
    }
    
    .form-control-message {
        max-width: clamp(1322px, 70vw, 1800px);
        height: clamp(150px, 8vw, 200px);
        padding: clamp(16px, 1.2vw, 24px);
        font-size: clamp(16px, 1vw, 20px);
        border-radius: 16px;
    }
    
    .btn-send {
        max-width: clamp(645px, 35vw, 900px);
        height: clamp(48px, 3vw, 60px);
        padding: clamp(10px, 1vw, 16px) clamp(30px, 2vw, 40px);
        font-size: clamp(16px, 1vw, 20px);
        border-radius: 30px;
    }
    
    .form-check-label {
        font-size: clamp(18px, 1.2vw, 22px);
        line-height: clamp(22px, 1.5vw, 28px);
    }

    .contact-form-container {
        padding: clamp(20px, 2vw, 40px);
    }
}

/* Hotel Grid 4K Optimizations */
@media (min-width: 2560px) {
    .hotel-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
        max-width: 2560px!important;
    }

    .hotel-card .hotel-name {
        font-size: 30px;
    }

    .hotel-card .location {
        font-size: 18px;
        padding: 6px 14px;
    }

    .hotel-card .discover-btn {
        font-size: 22px;
        padding: 12px 36px;
    }
    .hotel-image{
        height:100%!important;
    }
   
}

/* Header 4K Optimizations */
@media (min-width: 2560px) {
    .figma-header {
        height: 140px;
        padding: 0 80px;
    }

    .figma-header-logo img,
    .figma-header-logo1 img {
        height: 100px;
    }

    .figma-header-lang span,
    .figma-header-phone span {
        font-size: 24px;
    }

    .figma-header-oteller {
        font-size: 24px;
    }

    .figma-header-rez-btn {
        width: 200px;
        height: 48px;
        font-size: 22px;
    }

    .figma-header-hamburger {
        width: 56px;
        height: 48px;
    }

    .figma-header-hamburger .line {
        width: 38px;
        height: 3px;
    }
}

/* Spa Section 4K Optimizations */
@media (min-width: 2560px) {
    .containerx1 {
        padding: 12rem 18rem;
    }

    .spa-highlight {
        font-size: 24px;
        line-height: 30px;
    }

    .spa-title {
        font-size: 60px;
        line-height: 80px;
    }

    .spa-sub {
        font-size: 22px;
        line-height: 28px;
    }

    .spa-desc {
        font-size: 20px;
        line-height: 26px;
    }

    .spa-link {
        font-size: 22px;
        line-height: 28px;
    }
}

/* Fun Activities 4K Optimizations */
@media (min-width: 2560px) {
    .fun-activities__title {
        font-size: 7rem;
    }

    .fun-activities__text {
        font-size: 1.5rem;
        max-width: 1000px;
    }

    .fun-activities__cta {
        font-size: 1.375rem;
    }
}

/* Concept Section 4K Optimizations */
@media (min-width: 2560px) {
    .concept-section {
        gap: 80px;
        margin-bottom: 120px;
    }

    .title-zone {
        width: 800px;
        height: 100px;
    }

    .brand-name {
        font-size: 24px;
    }

    .section-title {
        font-size: 50px;
    }

    .concept-frame {
        width: 1800px;
        height: 900px;
    }

    .concept-content {
        padding: 80px;
    }

    .concept-list-text {
        margin-top: 200px;
        width: 720px;
    }

    .concept-list-text .title h2 {
        font-size: 50px;
    }

    .description {
        font-size: 22px;
    }

    .concept-image {
        width: 900px;
        height: 900px;
    }

    .tab-button {
        height: 40px;
        padding: 0 40px;
        font-size: 18px;
    }
}

/* Plaj Section 4K Optimizations */
@media (min-width: 2560px) {
    .plaj1 {
        width: 1200px;
        padding: 120px 0 120px 80px;
        gap: 40px;
    }

    .plajj {
        width: 800px;
    }

    .plaj1 h1 {
        font-size: 50px;
        line-height: 68px;
        margin-bottom: 40px;
    }

    .plaj1 p {
        font-size: 22px;
        line-height: 28px;
    }

    .plaj1 a {
        font-size: 20px;
    }
}

/* Footer 4K Optimizations */
@media (min-width: 2560px) {
    .footer-insta-gallery-img {
        min-height: 200px;
    }

    .footer-insta-bar {
        min-height: 220px;
    }

    .footer-insta-text {
        font-size: 32px;
    }

    .footer-social-icons a {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .footer-bottom {
        font-size: 18px;
        padding: 20px 100px 30px 100px;
    }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hotel-image img,
    .concept-image img,
    .figma-offer-image {
        image-rendering: crisp-edges;
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Focus states for 4K displays */
@media (min-width: 2560px) {
    .form-control:focus,
    .form-control-message:focus {
        outline: 3px solid var(--rez-button-default-bg, #866D4B);
        outline-offset: 3px;
        border-color: var(--rez-button-default-bg, #866D4B);
    }

    .btn-send:focus {
        outline: 3px solid #fff;
        outline-offset: 3px;
    }

    .tab-button:focus {
        outline: 2px solid var(--secondary-color);
        outline-offset: 2px;
    }
}
@media (min-width: 1441px) and (max-width: 2559px) {


    .form-control {
        max-width: 700px;
        height: 52px;
    }

    .form-control-message {
        max-width: 1400px;
        height: 160px;
    }

    .btn-send {
        max-width: 700px;
        height: 52px;
    }
}
@media (min-width: 1025px) and (max-width: 1440px) {
    
}
@media (min-width: 2560px) {
/*    .card {
        padding: clamp(50px, 4vw, 80px);
        max-width: 1800px;
        border-radius: 20px;
    }*/
    .mavi {
        top: 77% !important;
    }

    .havuzlar {
        padding-top: 650px !important;
    }

    .pool-carousel__control--prev {
        left: -4.0rem !important;
    }

    .pool-carousel__control--next {
        right: -3.0rem !important;
    }

    .bg-image-fixed {
        top: 231px !important;
    }
    .pool-section {
        height: 100vh !important;
        padding-top: 200px !important;
    }
    .pool-section-text {
        padding-top: 385px !important;
    }
    .form-control {
        max-width: 2560px !important;
        height: clamp(48px, 3vw, 60px);
        padding: clamp(10px, 1vw, 20px) clamp(16px, 1.2vw, 24px);
        font-size: clamp(16px, 1vw, 20px);
        border-radius: 16px;
    }

    .form-control-message {
        max-width: 2560px !important;
        height: clamp(150px, 8vw, 200px);
        padding: clamp(16px, 1.2vw, 24px);
        font-size: clamp(16px, 1vw, 20px);
        border-radius: 16px;
    }

    .btn-send {
        max-width: clamp(645px, 35vw, 900px);
        height: clamp(48px, 3vw, 60px);
        padding: clamp(10px, 1vw, 16px) clamp(30px, 2vw, 40px);
        font-size: clamp(16px, 1vw, 20px);
        border-radius: 30px;
    }

    .form-check-label {
        font-size: clamp(18px, 1.2vw, 22px);
        line-height: clamp(22px, 1.5vw, 28px);
    }

    .contact-form-container {
        padding: clamp(20px, 2vw, 40px);
    }
    .contact-form-container {
        display: flex;
        justify-content: center;
        width: 1440px!important;
        padding: 20px;
        box-sizing: border-box;
    }
}