/* --- Variables & Theme --- */
:root {
    --primary-color: #A62C2B;
    /* Deep Saffron/Red */
    --primary-dark: #801f1e;
    --accent-color: #D4AF37;
    /* Metallic Gold */
    --accent-light: #F9E79F;

    --bg-color: #FAF9F6;
    /* Off-white / Cream */
    --bg-light: #FFFFFF;
    --bg-pattern-col: #FFF8E1;

    --text-color: #2D2D2D;
    --text-light: #555555;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.12);

    --radius: 8px;
    /* Slightly softer edges, but not full rounded for premium feel */
    --container-width: 1200px;
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-pattern {
    background-color: var(--bg-pattern-col);
}

.text-center {
    text-align: center;
}

/* --- Typography --- */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.divider {
    height: 3px;
    width: 80px;
    background-color: var(--accent-color);
    margin: 1rem auto;
}

/* --- Buttons --- */
.btn-primary,
.btn-secondary,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 44, 43, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.hero .btn-secondary {
    border-color: white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--text-color);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border-radius: 50px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    color: var(--primary-dark);
    gap: 0.8rem;
    /* slight movement */
}

.btn-text.large {
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    /* Reduced from 60px */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .btn-secondary {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.nav-links .btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: url('assets/images/hero_bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
    /* offset for fixed header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* --- Ritual Kits Grid --- */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.kit-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.kit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--accent-color);
}

.kit-image {
    height: 220px;
    overflow: hidden;
}

.kit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.kit-details {
    padding: 1.5rem;
    text-align: center;
}

.kit-details h3 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

/* --- Basket Features (What comes inside) --- */
.basket-features {
    background-color: white;
}

.feature-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

.feature-list li i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.feature-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.feature-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* --- Items Grid --- */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.item-tile {
    background: white;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.item-tile:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.item-img-container {
    height: 180px;
    width: 100%;
    background-color: #fcfcfc;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.item-tile:hover img {
    transform: scale(1.08);
}

.item-info {
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #f5f5f5;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-info h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.regional-name {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.item-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-top: auto;
}

/* --- How It Works --- */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 4rem auto 0;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    background-color: var(--bg-pattern-col);
    /* mask line */
    padding: 0 1rem;
}

.step-circle {
    width: 60px;
    height: 60px;
    background-color: white;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-sm);
}

.step p {
    font-weight: 600;
    font-size: 1rem;
    max-width: 120px;
    margin: 0 auto;
}

.step-connector {
    flex: 1;
    height: 2px;
    background-color: #ddd;
    margin-top: -45px;
    /* align with circle center roughly */
    z-index: 1;
}

/* --- Why Rituals Basket --- */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    max-width: 200px;
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* --- CTA Section --- */
.cta-section {
    background-color: #FAFAFA;
    border-top: 1px solid #eee;
}

.cta-content {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-content h2 {
    color: white;
    margin-bottom: 2rem;
}

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

.cta-content .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-content .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* --- Footer --- */
.footer {
    background-color: #1a1a1a;
    color: #aeaeae;
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.footer-col h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-col p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-col a {
    color: #aeaeae;
}

.footer-col a:hover {
    color: var(--accent-color);
}

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

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }

    .step-connector {
        display: none;
        /* hide connectors on mobile vertical stack */
    }
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
    }

    .feature-layout {
        flex-direction: column-reverse;
    }

    .items-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}