/* Design System */
:root {
    --bg-color: #fcf9f5; /* Warm off-white */
    --text-color: #1f2937;
    --text-muted: #4b5563;
    --accent-color: #dc2626; /* Deep Red from Logo */
    --accent-hover: #b91c1c;
    --card-bg: #ffffff;
    --section-alt: #fef2f2; /* Very subtle light red */
    --border-color: #f3f4f6;
    --nav-bg: rgba(252, 249, 245, 0.95);
    
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

/* Typography */
h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--accent-color);
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

/* Buttons */
.cta-button, .primary-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.cta-button:hover, .primary-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.5);
}

.primary-button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    margin-top: 1rem;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: var(--nav-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 0.75rem 0;
}

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

.logo img {
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger span {
    width: 2rem;
    height: 0.25rem;
    background: var(--text-color);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Hero Section & Collage */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: #000;
    margin-top: 0;
    overflow: hidden;
}

.hero-collage {
    position: absolute;
    inset: -10px;
    z-index: 0;
}

.collage-img {
    position: absolute;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    object-fit: cover;
    transition: transform 0.2s linear, filter 0.3s ease;
    filter: brightness(0.5) contrast(1.1);
    transform: translate(var(--tx, 0px), var(--ty, 0px)) scale(var(--scale, 1));
}

.collage-img:hover {
    --scale: 1.05;
    filter: brightness(0.9) contrast(1.1);
    z-index: 10;
}

/* Image positions */
.collage-img:nth-child(1) { top: 15%; left: 15%; width: 25vw; height: 35vh; max-width: 280px; }
.collage-img:nth-child(2) { bottom: 15%; right: 15%; width: 25vw; height: 35vh; max-width: 280px; }
.collage-img:nth-child(3) { top: 18%; right: 20%; width: 22vw; height: 30vh; max-width: 240px; }
.collage-img:nth-child(4) { bottom: 18%; left: 20%; width: 22vw; height: 30vh; max-width: 240px; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.2) 0%, rgba(31, 41, 55, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1.5rem;
    margin: 0 auto;
    text-align: center;
    margin-top: 5rem;
}

.hero p {
    color: #f3f4f6;
    font-size: 1.25rem;
    margin: 0 auto 2rem;
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* About Section */
.about {
    background-color: var(--section-alt);
    border-bottom: 2px solid #fee2e2;
}

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

.feature-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 5px solid var(--accent-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px -3px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem;
    background-color: #fee2e2;
    border-radius: 50%;
}

.feature-card h3 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Products Section */
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 4px 15px -3px rgba(0,0,0,0.05);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.product-card .product-img img {
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-info p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Gatherings Section */
.gatherings {
    background-color: #1f2937;
    color: #f3f4f6;
}

.gatherings h2 {
    color: #ffffff;
}

.gatherings p, .gatherings li {
    color: #d1d5db;
}

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

.gatherings-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.gatherings-text li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

/* Location Section */
.location {
    background-color: var(--section-alt);
    border-top: 2px solid #fee2e2;
}

.location-details {
    background-color: var(--card-bg);
    display: inline-block;
    padding: 1.5rem 2.5rem;
    border-radius: 0.5rem;
    border-left: 5px solid var(--accent-color);
    margin-top: 1.5rem;
    text-align: left;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}

.location-details p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.location-details p:last-child {
    margin-bottom: 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.storefront-img img {
    border-radius: 1rem;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: #1f2937;
    color: #f3f4f6;
    padding: 4rem 0 2rem;
}

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

.footer-brand p {
    color: #d1d5db;
}

.footer-links h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.footer-links p {
    color: #d1d5db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Utility */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adaptiveness */
@media (max-width: 992px) {
    .about-grid, .gatherings-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        right: 0;
        top: 100%;
        background-color: var(--nav-bg);
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: transform 0.3s ease-in-out;
        transform: translateY(-150%);
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: -1;
    }

    .nav-links.active {
        transform: translateY(0);
    }
    
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
    
    .location-grid, .footer-content {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        gap: 1.5rem;
    }

    .section-padding {
        padding: 4rem 0;
    }
}
