/* VACAYS BY A - Editorial Travel Magazine Style */

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

:root {
    --coral: #e8636b;
    --sand: #f7f3ef;
    --ocean: #1a5f6c;
    --charcoal: #1a1a1a;
    --gray: #555;
    --gray-light: #888;
    --white: #fff;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--white);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-family: var(--serif); font-style: italic; }
strong { font-weight: 600; }

/* ========================================
   HEADER
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.logo img { height: 40px; width: auto; }

.nav-list {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-list a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--gray);
    transition: color 0.2s;
}

.nav-list a:hover,
.nav-list a.active { color: var(--charcoal); }

.nav-toggle {
    display: none;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    transition: 0.3s;
}

.nav-toggle::before { top: 0; }
.nav-toggle span { top: 9px; }
.nav-toggle::after { top: 18px; }

/* ========================================
   HERO - Full bleed, editorial
======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    display: block;
}

.hero-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.4);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--coral);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn--light {
    background: var(--white);
    color: var(--charcoal);
}

.btn--light:hover {
    background: var(--sand);
}

.link-arrow {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--coral);
    transition: color 0.2s;
}

.link-arrow:hover { color: var(--ocean); }

/* ========================================
   INTRO - Large text, offset
======================================== */
.intro {
    padding: 8rem 8% 8rem 15%;
    background: var(--white);
}

.intro-text {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.5;
    color: var(--charcoal);
    max-width: 800px;
    margin-bottom: 2rem;
}

.intro-text strong { color: var(--coral); }

/* ========================================
   DESTINATIONS - Magazine stagger
======================================== */
.destinations {
    padding: 6rem 0;
    background: var(--sand);
}

.destinations-header {
    padding: 0 8%;
    margin-bottom: 4rem;
}

.destinations-header h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
}

/* Offset row - wide card pushed right */
.dest-row--offset-right {
    padding: 0 4% 0 12%;
    margin-bottom: 3rem;
}

.dest-card--wide {
    max-width: 900px;
}

.dest-card--wide .dest-link {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    background: var(--white);
    overflow: hidden;
}

.dest-card--wide .dest-img {
    height: 400px;
}

.dest-card--wide .dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.dest-card--wide .dest-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dest-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1rem;
}

.dest-card h3 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.dest-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Split row - two cards, unequal */
.dest-row--split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    padding: 0 8% 0 20%;
    margin-bottom: 4rem;
}

.dest-row--split .dest-card .dest-link {
    display: block;
    background: var(--white);
    height: 100%;
}

.dest-row--split .dest-img {
    height: 280px;
    overflow: hidden;
}

.dest-row--split .dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.dest-row--split .dest-card:hover .dest-img img {
    transform: scale(1.05);
}

.dest-row--split .dest-content {
    padding: 1.5rem 2rem 2rem;
}

.dest-row--split h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.dest-cta {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray);
}

.dest-cta a {
    color: var(--coral);
    font-weight: 500;
}

.dest-cta a:hover { color: var(--ocean); }

/* ========================================
   PROCESS - Flowing narrative
======================================== */
.process {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 600px;
}

.process-intro {
    background: var(--ocean);
    color: var(--white);
    padding: 5rem;
    display: flex;
    align-items: center;
}

.process-intro h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
}

.process-flow {
    background: var(--white);
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

.process-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.process-line {
    width: 2px;
    min-height: 80px;
    background: linear-gradient(to bottom, var(--coral) 0%, var(--sand) 100%);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.process-text h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.process-text p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   TESTIMONIAL - Large editorial quote
======================================== */
.testimonial-feature {
    padding: 8rem 8%;
    background: var(--sand);
    text-align: center;
}

.testimonial-quote {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.testimonial-quote blockquote p {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.testimonial-quote cite {
    font-family: var(--sans);
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0.05em;
}

.testimonial-more {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.testimonial-more a {
    color: var(--coral);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ========================================
   ABOUT - Split asymmetric
======================================== */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-image {
    min-height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.about-content h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-content .btn {
    align-self: flex-start;
    margin-top: 1rem;
}

/* ========================================
   CTA
======================================== */
.cta {
    padding: 8rem 5%;
    background: var(--coral);
    text-align: center;
}

.cta h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2rem;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    padding: 4rem 5%;
    background: var(--charcoal);
    color: var(--white);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 1.5rem 2rem;
}

.footer-credit {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.footer-credit a { color: rgba(255,255,255,0.6); }
.footer-credit a:hover { color: var(--white); }

.footer-main h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .intro { padding: 6rem 6%; }
    .dest-row--offset-right { padding: 0 5%; }
    .dest-row--split { padding: 0 5%; grid-template-columns: 1fr 1fr; }
    .process { grid-template-columns: 1fr; }
    .process-intro { padding: 4rem; }
    .process-flow { padding: 4rem; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    
    .nav {
        position: fixed;
        inset: 0;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 99;
    }
    
    .nav.active { opacity: 1; visibility: visible; }
    .nav-list { flex-direction: column; gap: 2rem; text-align: center; }
    .nav-list a { font-size: 1.25rem; }

    .intro { padding: 5rem 6%; }
    .intro-text { font-size: 1.4rem; }

    .dest-card--wide .dest-link {
        grid-template-columns: 1fr;
    }
    .dest-card--wide .dest-img { height: 250px; }
    .dest-card--wide .dest-content { padding: 2rem; }

    .dest-row--split {
        grid-template-columns: 1fr;
        padding: 0 5%;
    }

    .about { grid-template-columns: 1fr; }
    .about-image { min-height: 300px; }
    .about-content { padding: 3rem; }

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
    .header { padding: 1rem 4%; }
    .hero h1 { font-size: 2.5rem; }
    .intro { padding: 4rem 5%; }
    .destinations { padding: 4rem 0; }
    .process-intro, .process-flow { padding: 3rem 5%; }
    .testimonial-feature { padding: 5rem 5%; }
    .cta { padding: 5rem 5%; }
    .about-content { padding: 2.5rem 5%; }
}

/* ========================================
   PAGE HERO (for subpages)
======================================== */
.page-hero {
    padding: 10rem 5% 5rem;
    background: var(--sand);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   QUOTE FORM PAGE
======================================== */
.quote-section {
    padding: 5rem 5%;
    background: var(--white);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--gray);
}

.form-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 2rem 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item label {
    margin-bottom: 0;
    font-weight: 400;
}

.btn-full {
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
    background: var(--sand);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-section h2 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   GALLERY PAGE
======================================== */
.gallery-section {
    padding: 5rem 5%;
    background: var(--white);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

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

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 8rem 5% 4rem;
    }
}

/* ========================================
   FORMS (for other pages)
======================================== */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--ocean);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

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

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

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
