@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

:root {
    --color-bg: #fcf9f2;
    --color-text: #2c3e50;
    --color-navy: #1a2a40;
    --color-red: #8B1C31;
    --color-gold: #c5a059;
    --color-white: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
    
    --shadow-soft: 0 10px 30px rgba(26, 42, 64, 0.08);
    --shadow-hover: 0 15px 40px rgba(26, 42, 64, 0.12);
    
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image: url('assets/images/parchment_bg.png');
    background-size: cover;
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* --- Navigation --- */
header {
    background: rgba(252, 249, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: block;
}

.logo-img {
    height: 100px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-gold);
    transition: var(--transition);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 500;
    border: 1px solid var(--color-navy);
    cursor: pointer;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-navy);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 6rem 5% 4rem 5%;
    gap: 2rem;
}

.hero-bg, .hero-overlay {
    display: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1.2s ease-out;
    text-align: left;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1.5s ease-out;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-navy);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--color-text);
    font-style: italic;
}

/* --- Sections --- */
section {
    padding: 6rem 5%;
}

.section-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
    margin: 1rem auto 3rem auto;
    width: 70%;
    max-width: 500px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '〰';
    display: block;
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-top: 10px;
}

/* --- How it Works --- */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.9);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(197, 160, 89, 0.2);
    position: absolute;
    top: -10px;
    left: -10px;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* --- Experience Grid (Triangular Zig-Zag Layout) --- */
.experience-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    max-width: 900px;
    width: 100%;
    margin: 4rem auto;
    position: relative;
    padding: 6rem 0;
    overflow-x: auto;
}

/* Winding zig-zag line behind the items */
.experience-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 900px;
    height: 100px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='100'%3E%3Cpath d='M0 50 L75 10 L225 90 L300 50' fill='none' stroke='%238B1C31' stroke-width='2' stroke-dasharray='6,6'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: left center;
    z-index: 1;
    opacity: 0.8;
}

.exp-item {
    text-align: center;
    padding: 0;
    width: 150px;
    flex: 0 0 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.exp-item h4 {
    background: var(--color-bg);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid var(--color-red);
    color: var(--color-navy);
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
    margin: 0;
    transition: var(--transition);
}

/* Add dots at the tips */
.exp-item::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: var(--color-red);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Odd items at top tip */
.exp-item:nth-child(odd) {
    transform: translateY(-40px);
}
.exp-item:nth-child(odd)::after {
    bottom: -15px;
}

/* Even items at bottom tip */
.exp-item:nth-child(even) {
    transform: translateY(40px);
}
.exp-item:nth-child(even)::after {
    top: -15px;
}

.exp-item:hover h4 {
    background: var(--color-navy);
    color: var(--color-white);
    transform: scale(1.05);
}



/* --- Booking / Contact --- */
.booking-section {
    background-color: var(--color-navy);
    color: var(--color-white);
    text-align: center;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    padding: 4rem 2rem;
    box-shadow: var(--shadow-hover);
}

.booking-section h2 {
    color: var(--color-white);
}

.booking-section .section-title::after {
    color: var(--color-red);
}

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

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.form-group input:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.5);
}

.btn-submit {
    background-color: var(--color-gold);
    color: var(--color-navy);
    font-weight: 600;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

/* --- Pricing Page --- */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    width: 300px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-gold);
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

/* --- About Page --- */
.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1.5;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-red);
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gold);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-navy);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .about-container {
        flex-direction: column;
        padding: 2rem;
    }
    nav ul {
        display: none; /* simple mobile menu handling omitted for brevity, but could add later */
    }
}
