/* ===== CUSTOM FONTS ===== */
@font-face {
    font-family: 'OneSignature';
    src: url('../fonts/OneSignature.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham-bold.ttf') format('truetype');
    font-weight: 700;
}

/* ===== VARIABLES ===== */
:root {
    --navy: #2b3a67;
    --dark-navy: #1e2749;
    --orange: #ff6b4a;
    --sage: #b5c4a1;
    --gray: #a8adb5;
}

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

body {
    font-family: 'Gotham', 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled .logo img {
    height: 120px;
}

.navbar.scrolled .nav-menu a {
    color: var(--navy);
    text-shadow: none;
}

.navbar.scrolled .mobile-menu-toggle span {
    background: var(--navy);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 200px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-menu a:hover {
    opacity: 0.8;
}

.btn-language {
    background: var(--orange);
    color: white !important;
    padding: 11px 20px;
    border-radius: 22px;
    border: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Gotham', 'Poppins', sans-serif;
    transition: all 0.3s;
}

.btn-language:hover {
    background: #e55a3a;
}

.btn-language #current-lang {
    font-weight: 700;
}

.btn-book {
    background: var(--gray);
    color: white !important;
    padding: 11px 24px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--navy);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-family: 'OneSignature', cursive;
    font-size: 14rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0;
    margin-top: -150px;
}

/* ===== BOOKING FORM ===== */
.booking-form {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 39, 73, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 45px;
    border-radius: 75px;
    display: flex;
    gap: 18px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.booking-btn {
    background: var(--orange);
    color: white;
    border: none;
    padding: 18px 42px;
    border-radius: 38px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-btn:hover {
    background: #e55a3a;
}

.booking-dropdown .arrow {
    font-size: 14px;
}

.booking-date {
    background: var(--orange);
    color: white;
    border: none;
    padding: 18px 42px;
    border-radius: 38px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-family: 'Gotham', 'Poppins', sans-serif;
}

.booking-date::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.booking-select {
    background: var(--orange);
    color: white;
    border: none;
    padding: 18px 42px;
    border-radius: 38px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-family: 'Gotham', 'Poppins', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='white' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.booking-select option {
    background: var(--dark-navy);
    color: white;
}

.booking-input {
    background: var(--orange);
    color: white;
    border: none;
    padding: 18px 42px;
    border-radius: 38px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 225px;
    font-family: 'Gotham', 'Poppins', sans-serif;
}

.booking-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.booking-btn-book {
    background: var(--gray);
    color: white;
    border: none;
    padding: 18px 42px;
    border-radius: 38px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-btn-book:hover {
    background: #8f94a0;
}

/* ===== ADVENTURES SECTION ===== */
.adventures {
    background: #212244;
    padding: 100px 0;
}

.adventures-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.adventures-title {
    color: var(--orange);
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.adventures-subtitle {
    font-family: 'OneSignature', cursive;
    color: var(--orange);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 80px;
}

.adventures-grid {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.adventures-images {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-shrink: 0;
}

.adventures-images img:first-child {
    width: 280px;
    height: 380px;
    object-fit: cover;
}

.adventures-images img:last-child {
    width: 450px;
    height: 280px;
    object-fit: cover;
    margin-left: 100px;
}

.adventures-content {
    display: flex;
    gap: 120px;
    color: white;
    align-items: flex-start;
    padding-top: 40px;
}

.rabbit-icon {
    flex-shrink: 0;
    margin-left: -240px;
}

.rabbit-icon img {
    width: 180px;
    height: auto;
    display: block;
}

.adventures-text {
    flex: 1;
}

.adventures-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.btn-plan {
    display: inline-block;
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-plan:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-2px);
}

/* ===== APARTMENTS SECTION ===== */
.apartments-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    overflow: hidden;
}

.apartments-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.apartments-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.apartments-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(181, 196, 161, 0.85);
    z-index: 1;
    pointer-events: none;
}

.apartments-images {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    padding: 15px;
}

.apt-img-large,
.apt-img-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.apartments-info {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.apartments-info h2 {
    color: var(--orange);
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.apartments-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.apt-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.apt-desc {
    margin-top: 20px;
    margin-bottom: 25px;
}

.btn-apartments {
    display: inline-flex;
    background: var(--orange);
    color: white;
    padding: 11px 22px;
    border-radius: 22px;
    border: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    cursor: pointer;
    font-family: 'Gotham', 'Poppins', sans-serif;
}

.btn-apartments:hover {
    background: #e55a3a;
    transform: translateY(-2px);
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background: var(--navy);
    padding: 80px 40px;
    text-align: center;
}

.location-section h2 {
    color: var(--orange);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
}

.map-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.map-img {
    width: 100%;
    height: auto;
}

/* ===== FACTS SECTION ===== */
.facts-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facts-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.facts-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.facts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(181, 196, 161, 0.85);
    z-index: 1;
}

.facts-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 40px;
}

.facts-section h2 {
    color: var(--orange);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
}

.facts-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fact-polaroid {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.fact-polaroid:nth-child(even) {
    transform: rotate(2deg);
}

.fact-polaroid:hover {
    transform: rotate(0deg) translateY(-5px);
}

.fact-polaroid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fact-polaroid img:hover {
    transform: scale(1.05);
}

.fact-polaroid p {
    text-align: center;
    font-style: italic;
    font-size: 0.95rem;
    color: #333;
}


/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: white;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-logo {
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: 'OneSignature', cursive;
    font-size: 1.8rem;
    color: var(--orange);
    text-align: center;
}

.footer-section h3 {
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-company {
    font-weight: 600;
    color: white;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--orange);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-social svg {
    color: white;
}

.footer-newsletter {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-credits {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credits a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-credits a:hover {
    color: var(--orange);
}

.heart {
    color: #ff4444;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(1);
    }
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--orange);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.lightbox.active {
    display: block;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--orange);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
    .nav-container {
        padding: 0 40px;
    }
    
    .logo img {
        height: 150px;
    }
    
    .hero-title {
        font-size: 10rem;
    }
}

@media (max-width: 1024px) {
    .logo img {
        height: 120px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 8rem;
    }
    
    .booking-form {
        flex-wrap: wrap;
        padding: 15px 20px;
        gap: 8px;
    }
    
    .booking-btn,
    .booking-input {
        font-size: 10px;
        padding: 10px 20px;
    }
    
    .adventures-grid {
        grid-template-columns: 1fr;
    }
    
    .apartments-section {
        grid-template-columns: 1fr;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facts-video-bg iframe {
        width: 150vw;
        height: 84.375vw;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 100px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(30, 39, 73, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 80px 40px;
        transition: left 0.3s;
        gap: 30px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle span {
        background: white;
    }
    
    .hero-title {
        font-size: 5rem;
        margin-top: -50px;
    }
    
    .booking-form {
        flex-direction: column;
        width: 90%;
        padding: 20px;
        gap: 12px;
    }
    
    .booking-btn,
    .booking-input,
    .booking-btn-book {
        width: 100%;
        font-size: 12px;
        padding: 14px 24px;
    }
    
    .apartments-images {
        grid-template-columns: 1fr;
    }
    
    .apartments-info {
        padding: 40px 30px;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .facts-video-bg iframe {
        width: 200vw;
        height: 112.5vw;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .logo img {
        height: 80px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        margin-top: 0;
    }
    
    .booking-form {
        bottom: 30px;
        width: 95%;
        padding: 15px;
    }
    
    .booking-btn,
    .booking-input,
    .booking-btn-book {
        font-size: 11px;
        padding: 12px 20px;
    }
    
    .adventures-title,
    .location-section h2,
    .facts-section h2 {
        font-size: 1.8rem;
    }
    
    .apartments-info h2 {
        font-size: 2rem;
    }
    
    .apartments-info {
        padding: 30px 20px;
    }
}
