/* ==========================================
   HONEYMOON.CSS - HONEYMOON PLANNING PAGE STYLES
   For: curated-honeymoon.html
========================================== */

/* ==========================================
   HERO SECTION
========================================== */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 120px 60px 80px;
    background: linear-gradient(135deg, var(--background-cream) 0%, var(--background-gray) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 149, 107, 0.03) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.breadcrumb {
    grid-column: 1 / -1;
}

.hero-content {
    max-width: 600px;
    /* Will be animated by JS */
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-dark);
    letter-spacing: -1px;
}

.title-emphasis {
    color: var(--accent-orange-muted);
    position: relative;
}

.title-emphasis::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-teal) 0%, transparent 100%);
    opacity: 0.6;
}

.hero-description {
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-teal) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(15, 95, 95, 0.15);
    margin-bottom: 40px;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(15, 95, 95, 0.25);
    outline: none;
}

.hero-quote {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(44, 44, 44, 0.06);
    border-left: 5px solid var(--accent-orange);
}

.quote-text {
    font-size: clamp(14px, 1.8vw, 16px);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.quote-author {
    font-size: 14px;
    color: var(--accent-orange-muted);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* ==========================================
   HERO VISUAL SECTION - CLEAN IMAGE GRID
========================================== */

.hero-visual {
    position: relative;
    height: 600px;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.visual-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(44, 44, 44, 0.15);
}

.visual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(44, 44, 44, 0.25);
}

.visual-card.with-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
}

.visual-card.with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 95, 95, 0.1) 0%, rgba(212, 149, 107, 0.1) 100%);
    border-radius: 16px;
}

/* Large card - main focal point */
.visual-card.large {
    width: 360px;
    height: 500px;
    top: 50px;
    left: 0;
    z-index: 1;
}

/* Small cards - positioned to create visual balance */
.visual-card.small {
    width: 240px;
    height: 240px;
    z-index: 2;
}

.visual-card.small:nth-child(2) {
    top: 0;
    right: 0;
}

.visual-card.small:nth-child(3) {
    bottom: 0;
    right: 30px;
}

.card-overlay {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 15px;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(5px);
    margin: 20px;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.card-subtitle {
    font-size: 12px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ==========================================
   EXPERIENCES SECTION
========================================== */

.experiences {
    padding: 120px 60px;
    background: white;
}

.experiences-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--primary-teal);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.7;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.experience-card {
    background: var(--background-gray);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    border: 1px solid rgba(15, 95, 95, 0.05);
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(15, 95, 95, 0.15);
    border-color: var(--primary-teal);
}

.experience-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
}

.experience-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.experience-content {
    padding: 30px 25px;
}

.experience-title {
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.experience-description {
    font-size: clamp(14px, 1.8vw, 15px);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
}

.experience-features {
    list-style: none;
    font-size: 14px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.experience-features li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.experience-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange-muted);
    font-weight: bold;
}

/* ==========================================
   PROCESS SECTION
========================================== */

.process {
    padding: 120px 60px;
    cursor: default;
    background: var(--primary-dark);
    color: white;
}

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

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.process-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.process-step {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.process-step:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-orange);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-muted) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.step-title {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    margin-top: 15px;
}

.step-description {
    font-size: clamp(14px, 1.8vw, 15px);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.7;
}

/* ==========================================
   CTA SECTION
========================================== */

.cta {
    padding: 120px 60px;
    background: var(--primary-dark);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.cta-description {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    margin-bottom: 50px;
    line-height: 1.7;
}

.cta-primary-final {
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-muted) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 40px rgba(212, 149, 107, 0.2);
}

.cta-primary-final:hover,
.cta-primary-final:focus {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(212, 149, 107, 0.3);
    outline: none;
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */

/* Large Desktop (1441px+) */
@media (min-width: 1441px) {
    .hero-container,
    .experiences-container,
    .process-container,
    .cta-container {
        max-width: 1600px;
    }

    .hero,
    .experiences,
    .process,
    .cta {
        padding-left: 80px;
        padding-right: 80px;
    }
}

/* Tablet (769px - 1024px) */
@media (max-width: 1024px) {
    .hero-container {
        gap: 60px;
    }

    .experiences-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .hero-visual {
        max-width: 480px;
        height: 550px;
    }

    .visual-card.large {
        width: 320px;
        height: 450px;
    }

    .visual-card.small {
        width: 160px;
        height: 200px;
    }
}

/* Mobile (481px - 768px) */
@media (max-width: 768px) {
    .hero {
        padding: 120px 30px 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-visual {
        height: 480px;
        max-width: 400px;
    }

    .visual-card.large {
        width: 280px;
        height: 380px;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .visual-card.small {
        width: 120px;
        height: 160px;
    }

    .visual-card.small:nth-child(2) {
        top: 10px;
        right: 20px;
        transform: none;
    }

    .visual-card.small:nth-child(3) {
        bottom: 20px;
        right: 30px;
        transform: none;
    }

    .experiences,
    .process,
    .cta {
        padding: 80px 30px;
    }

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

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

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 40px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-quote {
        padding: 20px 15px;
    }

    .hero-visual {
        height: 380px;
        max-width: 320px;
    }

    .visual-card.large {
        width: 220px;
        height: 300px;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .visual-card.small {
        width: 90px;
        height: 120px;
    }

    .visual-card.small:nth-child(2) {
        top: 5px;
        right: 15px;
        transform: none;
    }

    .visual-card.small:nth-child(3) {
        bottom: 15px;
        right: 20px;
        transform: none;
    }

    .experiences,
    .process,
    .cta {
        padding: 60px 20px;
    }

    .experience-content {
        padding: 25px 20px;
    }

    .process-step {
        padding: 35px 20px;
    }
}