/* Opal Voyages Stylesheet */

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

:root {
    --cream: #F8F6F1;
    --sand: #E8E3D6;
    --stone: #C5BDB0;
    --slate: #7A7568;
    --charcoal: #3A3731;
    --ocean: #4A6B7C;
    --rust: #A6644E;
    --gold: #C9A961;
    
    --serif: 'Cormorant Garamond', serif;
    --body: 'Crimson Pro', serif;
}

body {
    font-family: var(--body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 246, 241, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--sand);
    transition: all 0.3s;
}

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

.logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: lowercase;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.nav-links a {
    color: var(--slate);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-weight: 300;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ocean);
}

.cta-button {
    background: var(--ocean);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-weight: 400;
    display: inline-block;
}

.cta-button:hover {
    background: var(--rust);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 107, 124, 0.3);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 107, 124, 0.15), rgba(166, 100, 78, 0.1));
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    animation: slowZoom 30s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero h1 {
    font-family: var(--serif);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--slate);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 10rem 3rem 5rem;
    margin-top: 80px;
    background: white;
}

.page-header h1 {
    font-family: var(--serif);
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--ocean);
}

.page-header p {
    font-size: 1.3rem;
    color: var(--slate);
    font-weight: 300;
}

/* Section Styling */
section {
    padding: 8rem 3rem;
}

.content-section {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--slate);
    font-weight: 300;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.about-text h3 {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--ocean);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--slate);
    line-height: 1.8;
}

.founders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.founder-card {
    background: white;
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid var(--sand);
}

.founder-card h4 {
    font-family: var(--serif);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--ocean);
}

.founder-card .title {
    color: var(--rust);
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.founder-card p {
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* How It Works */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-family: var(--serif);
    font-size: 4rem;
    color: var(--sand);
    font-weight: 300;
    margin-bottom: 1rem;
}

.step h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--ocean);
}

.step p {
    color: var(--slate);
    line-height: 1.7;
}

/* Discover Section */
.feelings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feeling-card {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--sand);
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.feeling-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--ocean);
}

.feeling-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feeling-card h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--ocean);
}

.feeling-card p {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Destinations */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    height: 450px;
    display: block;
    color: white;
}

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

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2.5rem;
    color: white;
}

.destination-overlay h3 {
    font-family: var(--serif);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.destination-overlay .tagline {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Journal */
.journal-grid {
    display: grid;
    gap: 5rem;
    margin-top: 3rem;
}

.journal-entry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.journal-entry:nth-child(even) {
    direction: rtl;
}

.journal-entry:nth-child(even) > * {
    direction: ltr;
}

.journal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

.journal-content h3 {
    font-family: var(--serif);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--ocean);
}

.journal-location {
    color: var(--rust);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.journal-content p {
    color: var(--slate);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.journal-date {
    color: var(--stone);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 1.5rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--ocean);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--rust);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial {
    background: white;
    padding: 3rem;
    border-radius: 4px;
    border-left: 3px solid var(--ocean);
}

.testimonial-text {
    font-family: var(--serif);
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--charcoal);
    font-style: italic;
}

.testimonial-author {
    color: var(--slate);
    font-size: 0.9rem;
}

.testimonial-author strong {
    color: var(--ocean);
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--sand);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--ocean);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--slate);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Trust Signals */
.trust-section {
    background: white;
    padding: 5rem 3rem;
    text-align: center;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
}

.badge-number {
    font-family: var(--serif);
    font-size: 3.5rem;
    color: var(--ocean);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.badge-label {
    color: var(--slate);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 8rem 3rem;
    background: linear-gradient(135deg, var(--ocean), var(--rust));
    color: white;
}

.cta-section h2 {
    font-family: var(--serif);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.button-primary {
    background: white;
    color: var(--ocean);
    padding: 1.2rem 3rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-weight: 500;
    display: inline-block;
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.button-secondary {
    background: transparent;
    color: white;
    padding: 1.2rem 3rem;
    border: 2px solid white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
}

.button-secondary:hover {
    background: white;
    color: var(--ocean);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--stone);
    padding: 5rem 3rem 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--serif);
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    color: white;
    font-family: var(--serif);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--stone);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(197, 189, 176, 0.2);
    text-align: center;
    font-size: 0.9rem;
}

.fora-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hero h1,
    .page-header h1 {
        font-size: 3rem;
    }

    .about-grid,
    .journal-entry,
    .founders {
        grid-template-columns: 1fr;
    }

    .journal-entry:nth-child(even) {
        direction: ltr;
    }

    .process-steps,
    .feelings-grid,
    .destinations-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .trust-badges {
        gap: 2rem;
    }

    section,
    .content-section {
        padding: 4rem 2rem;
    }

    .page-header {
        padding: 8rem 2rem 4rem;
    }
}

@media (max-width: 640px) {
    .hero h1,
    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }
}