@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
    --bg-color: #050505;
    --text-color: #f5f5f7;
    --accent-color: #d4af37;
    --font-primary: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--text-color);
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
}

a, button, .h-card, .ex-card, .quiz-card, input, textarea {
    cursor: none;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.preloader-counter {
    font-size: 8rem;
    font-weight: 300;
    letter-spacing: -2px;
    color: var(--text-color);
}

.preloader-title {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-top: 1rem;
    opacity: 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.6;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* For parallax */
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: brightness(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(5,5,5,1) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 6.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -4px;
    margin-bottom: 2rem;
}

.line-mask {
    overflow: hidden;
    position: relative;
    display: block; /* each line block */
}

.title-line {
    display: block;
    transform-origin: top left;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.4;
}

/* Marquee Section */
.marquee-section {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 1.5rem 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.marquee-container {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.marquee-content .dot {
    opacity: 0.5;
    font-size: 1rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

/* Horizontal Section */
.horizontal-section {
    padding: 10rem 0;
    background-color: var(--bg-color);
    position: relative;
    z-index: 2;
}

.horizontal-header {
    padding: 0 5%;
    margin-bottom: 6rem;
}

.horizontal-header h2 {
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: -2px;
}

.horizontal-header p {
    font-size: 1.3rem;
    color: #888;
    margin-top: 1rem;
    font-weight: 300;
}

.h-scroll-wrapper {
    overflow: hidden;
    padding: 0 5%;
}

.h-scroll-container {
    display: flex;
    gap: 4rem;
    width: fit-content;
    padding-right: 5%;
}

.h-card {
    flex: 0 0 calc(500px + 5vw);
    height: 650px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.h-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.h-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
}

.h-card-text h3 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.h-card-text p {
    font-size: 1.2rem;
    color: #bbb;
    font-weight: 300;
}

/* Exclusive Experiences Grid */
.exclusive-section {
    padding: 10rem 5%;
    background-color: #020202;
    position: relative;
    z-index: 2;
}

.exclusive-header {
    text-align: center;
    margin-bottom: 6rem;
}

.exclusive-header h2 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.exclusive-header p {
    font-size: 1.2rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.ex-card {
    height: 500px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.ex-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s ease;
    filter: brightness(0.7);
}

.ex-card:hover .ex-bg {
    transform: scale(1.1);
    filter: brightness(0.2);
}

.ex-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.ex-card:hover .ex-content {
    transform: translateY(0);
    opacity: 1;
}

.ex-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: var(--text-color);
}

.ex-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    font-weight: 300;
}

/* Feature Section */
.feature-section {
    padding: 15rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--bg-color);
    position: relative;
    z-index: 2;
}

.feature-container {
    display: flex;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-image {
    flex: 1.2;
    height: 800px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.feature-text p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #aaa;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    padding: 15rem 5%;
    background-color: var(--bg-color);
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.contact-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
}

.contact-text {
    flex: 1;
}

.contact-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-text p {
    font-size: 1.2rem;
    color: #aaa;
    line-height: 1.6;
}

.contact-form {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    background-color: #111;
    border: 1px solid #333;
    color: var(--text-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.cta-button {
    padding: 1.5rem 4rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: var(--text-color);
    color: var(--bg-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: #111;
    border: 1px solid #333;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 20px;
    position: relative;
    overflow-y: auto;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-body {
    padding: 4rem;
}

.modal-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.modal-itinerary h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    margin-top: 2.5rem;
}

.modal-itinerary h4:first-child {
    margin-top: 0;
}

.modal-itinerary p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

.modal-book-btn {
    margin-top: 3rem;
    width: 100%;
    text-align: center;
}

/* Quiz Modal */
.quiz-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.quiz-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.quiz-close {
    position: fixed;
    top: 3rem;
    right: 4rem;
    font-size: 3rem;
    z-index: 3010;
}

.quiz-content {
    width: 90%;
    max-width: 1200px;
    position: relative;
    text-align: center;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.8s ease forwards;
}

.quiz-step.active {
    display: block;
}

.quiz-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 4rem;
}

.quiz-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 3rem;
}

.quiz-options {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .quiz-options {
        flex-direction: column;
    }
}

.quiz-card {
    flex: 1;
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quiz-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease, filter 0.5s ease;
    filter: brightness(0.5);
    z-index: -1;
}

.quiz-card:hover .quiz-card-bg {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.quiz-card span {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -1px;
    z-index: 2;
    pointer-events: none;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.quiz-grid-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.quiz-btn {
    background: transparent;
    border: 1px solid #444;
    color: var(--text-color);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-family: var(--font-primary);
    font-weight: 300;
    transition: all 0.3s ease;
}

.quiz-btn:hover {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.05); /* accent color low opacity */
    transform: translateY(-5px);
}

.quiz-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quiz-form input {
    width: 100%;
    padding: 1.5rem;
    background-color: #111;
    border: 1px solid #333;
    color: var(--text-color);
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    text-align: center;
    transition: border-color 0.3s ease;
}

.quiz-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.quiz-form .cta-button {
    width: 100%;
    align-self: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.footer {
    padding: 4rem 5%;
    border-top: 1px solid #1a1a1a;
    background-color: var(--bg-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Lenis */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
