
@font-face {
    font-family: "Golos Text";
    src: url("fonts/golfont/golos/golos-regular/GolosText-Regular.woff2") format("woff2"), url("fonts/golfont/golos/golos-regular/GolosText-Regular.woff") format("woff");
    font-weight: 400; /* normal */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Golos Text";
    src: url("fonts/golfont/golos/golos-medium/GolosText-Medium.woff2") format("woff2"), url("fonts/golfont/golos/golos-medium/GolosText-Medium.woff") format("woff");
    font-weight: 500; /* medium */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Golos Text";
    src: url("fonts/golfont/golos/golos-semibold/GolosText-SemiBold.woff2") format("woff2"), url("fonts/golfont/golos/golos-semibold/GolosText-SemiBold.woff") format("woff");
    font-weight: 600; /* semibold */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Golos Text";
    src: url("fonts/golfont/golos/golos-bold/GolosText-Bold.woff2") format("woff2"), url("fonts/golfont/golos/golos-bold/GolosText-Bold.woff") format("woff");
    font-weight: 700; /* bold */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Golos Text";
    src: url("fonts/golfont/golos/golos-extrabold/GolosText-ExtraBold.woff2") format("woff2"), url("fonts/golfont/golos/golos-extrabold/GolosText-ExtraBold.woff") format("woff");
    font-weight: 800; /* extrabold */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Golos Text";
    src: url("fonts/golfont/golos/golos-black/GolosText-Black.woff2") format("woff2"), url("fonts/golfont/golos/golos-black/GolosText-Black.woff") format("woff");
    font-weight: 900; /* black */
    font-style: normal;
    font-display: swap;
}


/* ======================= GLOBAL STYLES & VARIABLES ======================= */
:root {
    --color-primary: #550C18; /* Dark Red */
    --color-dark: #443730;    /* Dark Brown */
    --color-mid: #786452;     /* Medium Brown */
    --color-light: #A5907E;    /* Light Brown */
    --color-text: #f0e9e4;
    --color-background: #312823;
    --color-white: #ffffff;

    --font-primary: 'Golos Text', sans-serif; /* Example: A modern sans-serif font */
    --font-secondary: 'Golos Text', sans-serif; /* Example: An elegant serif for headings */
    
    --spacing-unit: 1rem; /* 16px */
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

/* Basic Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%; /* 16px */
}

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

h1, h2, h3, h4 {
    font-family: var(--font-secondary);
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw + 1rem, 3rem); }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: var(--spacing-unit);
    max-width: 75ch;
}

a {
    color: var(--color-light);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover, a:focus {
    color: var(--color-white);
}

ul {
    list-style: none;
}

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

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

section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header h2 {
    margin-bottom: 1rem;
}
.section-header p {
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-light);
}

/* ======================= HEADER ======================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: background-color var(--transition-speed) ease, padding var(--transition-speed) ease;
}

.main-header.scrolled {
    background-color: rgba(30, 22, 17, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.logo {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--color-white);
}
.logo:hover { color: var(--color-light); }

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-speed) ease;
}
.nav-link:hover::after, .nav-link:focus::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}
.nav-link.active {
    color: var(--color-white);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.2s ease-in-out;
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: all 0.2s ease-in-out;
}
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* ======================= REUSABLE COMPONENTS ======================= */
.button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.button-primary:hover, .button-primary:focus {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(85, 12, 24, 0.4);
}

/* ======================= HERO SECTION ======================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
    background: url('images/hero-bg.webp') no-repeat center center/cover;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(30, 22, 17, 0.9) 0%, rgba(68, 55, 48, 0.6) 100%);
}

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

.hero .subtitle {
    font-size: 1.25rem;
    margin: 1.5rem 0 2.5rem;
    color: var(--color-light);
}

/* ======================= ACHIEVEMENTS SECTION ======================= */
.achievements { background-color: var(--color-dark); }
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}
.achievement-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.achievement-card .card-icon {
    color: var(--color-primary);
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}
.achievement-card h3 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}
.achievement-card p {
    color: var(--color-light);
    font-size: 0.9rem;
}

/* ======================= PROCESS SECTION ======================= */
.process-steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    left: 2rem;
    width: 4px;
    background-color: var(--color-mid);
    opacity: 0.2;
}
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}
.step-number {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-secondary);
    z-index: 1;
}
.step-content p {
    color: var(--color-light);
}

/* ======================= WHO WE ARE SECTION ======================= */
.who-we-are { background-color: var(--color-dark); }
.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
.who-we-are-image img {
    border-radius: var(--border-radius);
    box-shadow: 10px 10px 0px var(--color-primary);
}
.who-we-are-text p {
    margin-bottom: 1.5rem;
    color: var(--color-light);
}

/* ======================= REVIEWS SLIDER ======================= */
.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.slider-wrapper {
    display: flex;
    transition: transform var(--transition-speed) ease-in-out;
}
.slide {
    flex: 0 0 100%;
    padding: 2rem;
    text-align: center;
}
.review-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.reviewer-name {
    font-weight: bold;
    font-style: normal;
    color: var(--color-light);
    font-family: var(--font-secondary);
}
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.slider-nav {
    background: transparent;
    border: 2px solid var(--color-mid);
    color: var(--color-mid);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all var(--transition-speed) ease;
}
.slider-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* ======================= FEATS & BENEFITS SECTIONS ======================= */
.feats { background-color: var(--color-dark); }
.feats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
.feat-card {
    background-color: var(--color-dark);
    padding: 2rem;
    border-left: 4px solid var(--color-primary);
    transition: background-color var(--transition-speed) ease;
}
.feat-card:hover {
    background-color: #2a221d;
}
.feat-card h3 {
    margin-bottom: 1rem;
}
.feat-card p {
    color: var(--color-light);
}

.benefits-list {
    display: grid;
    gap: 2.5rem;
}
.benefit-item {
    padding: 2rem;
    background: linear-gradient(90deg, var(--color-dark) 0%, transparent 100%);
    border-radius: var(--border-radius);
}
.benefit-item h3 {
    margin-bottom: 1rem;
}
.benefit-item p {
    color: var(--color-light);
}

/* ==========================================================================
   STORE PAGE STYLES
   ========================================================================== */

/* Page Hero (for subpages) */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
    background: url('images/sub-bg.webp') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect */
}

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}
.menu-card {
    background: var(--color-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(85, 12, 24, 0.3);
}
.menu-card-image {
    height: 250px;
    overflow: hidden;
}
.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}
.menu-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.menu-card-content h3 {
    color: var(--color-white);
}
.card-description {
    color: var(--color-light);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}
.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.price {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}
.button-add-to-cart {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--color-mid);
    color: var(--color-mid);
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button-add-to-cart:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* Sides Section */
.sides-section {
    background-color: var(--color-dark);
}
.sides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.side-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    padding: 2rem;
    border-radius: var(--border-radius);
    border-top: 3px solid var(--color-primary);
}
.side-card h4 {
    margin-bottom: 1rem;
    color: var(--color-white);
    font-size: 1.2rem;
}
.side-card p {
    font-size: 0.9rem;
    color: var(--color-light);
}
.side-card .price {
    font-size: 1.2rem;
    display: block;
    text-align: right;
    margin-top: 1rem;
}

/* Services Section */
.services-section {
    background-color: var(--color-background);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    text-align: center;
}
.service-item {
    padding: 2rem;
}
.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
}
.service-item h3 {
    margin-bottom: 1rem;
}
.service-item p {
    color: var(--color-light);
}

/* FAQ Section */
.faq-section {
    background-color: var(--color-dark);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--color-mid);
}
.faq-item {
    border-bottom: 1px solid var(--color-mid);
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 1rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
}
.faq-question:hover, .faq-question:focus {
    color: var(--color-white);
}
.faq-icon {
    width: 1em;
    height: 1em;
    position: relative;
    transition: transform 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}
.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.is-open .faq-icon {
    transform: rotate(135deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), padding 0.5s ease;
    padding: 0 1rem;
}
.faq-item.is-open .faq-answer {
    max-height: 500px; /* A large value to accommodate content */
    transition: max-height 1s cubic-bezier(1, 0, 1, 0), padding 0.5s ease;
    padding: 0rem 1rem 1.5rem;
}
.faq-answer p {
    color: var(--color-light);
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.stat-number {
    display: block;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    font-family: var(--font-secondary);
    line-height: 1;
}
.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Organics Section */
.organics-section {
    background-color: var(--color-background);
}
.organics-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}
.organics-image img {
    border-radius: var(--border-radius);
}
.organics-text p {
    color: var(--color-light);
}

/* Responsive adjustments for new sections */
@media (max-width: 992px) {
    .organics-content {
        grid-template-columns: 1fr;
    }
    .organics-text { order: 2; }
    .organics-image { order: 1; max-width: 500px; margin: 0 auto 2rem auto; }
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */

.about-hero {
    background: url('images/about-bg.webp') no-repeat center center/cover;
    background-attachment: fixed;
}

/* Origin Story Section */
.origin-story {
    background-color: var(--color-dark);
}
.origin-story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}
.origin-story-image img {
    border-radius: var(--border-radius);
    box-shadow: -10px 10px 0px var(--color-primary);
}
.origin-story-text .section-header
{
    text-align: left;
    margin-bottom: 2rem;
}
.origin-story-text p {
    color: var(--color-light);
}

/* Philosophy Section */
.philosophy-section {
    background-color: var(--color-background);
}
.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.philosophy-item h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.philosophy-item p {
    color: var(--color-light);
}

/* Core Values Section */
.core-values-section {
    background-color: var(--color-dark);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.value-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
    border-radius: var(--border-radius);
}
.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    color: var(--color-white);
}

/* Vision & Goals Section */
.vision-goals-section {
    background-color: var(--color-background);
}
.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.vision-text p {
    color: var(--color-light);
}
.goals-list h3 {
    color: var(--color-primary);
}
.goals-list ul {
    list-style: none;
    padding-left: 0;
}
.goals-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--color-light);
}
.goals-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Team Section */
.team-section {
    background-color: var(--color-dark);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2.5rem;
    margin-bottom: 20px;
}
.team-card {
    background-color: var(--color-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Needed for mo.js */
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.team-card-image {
    height: 350px;
}
.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}
.team-card:hover .team-card-image img {
    filter: grayscale(0%);
}
.team-card-content {
    padding: 2rem;
}
.team-name {
    margin-bottom: 0.25rem;
    color: var(--color-white);
}
.team-title {
    color: var(--color-primary);
    font-weight: bold;
    margin-bottom: 1rem;
}
.team-bio {
    font-size: 0.9rem;
    color: var(--color-light);
}


/* Responsive adjustments for About page */
@media (max-width: 992px) {
    .origin-story-content {
        grid-template-columns: 1fr;
    }
    .origin-story-text { order: 2; }
    .origin-story-image { order: 1; max-width: 500px; margin: 0 auto 2rem auto; }
}
@media (max-width: 768px) {
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-page-hero {
    background: url('images/contact-bg.webp') no-repeat center center/cover;
    background-attachment: fixed;
}

/* Ambient Background Container */
.mo-background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.contact-main {
    padding: 6rem 0;
    position: relative;
    z-index: 2; /* Ensure content is above ambient background */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
    background: rgba(49, 40, 35, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 4rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-details h3,
.contact-form-container h3 {
    margin-bottom: 1rem;
}
.contact-details p,
.contact-form-container p {
    color: var(--color-light);
    margin-bottom: 2rem;
}

.details-list {
    display: grid;
    gap: 2rem;
}

.details-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.details-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--color-primary);
}
.details-item h4 {
    margin-bottom: 0.25rem;
}
.details-item p {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--color-light);
}

/* Floating Label Form Styles */
.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background-color: rgba(0,0,0,0.2);
    border: 1px solid var(--color-mid);
    border-radius: var(--border-radius);
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--color-light);
    pointer-events: none;
    transition: all 0.2s ease;
}

/* Move label up when input is focused or has content */
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.8rem;
    background-color: var(--color-dark);
    padding: 0 0.5rem;
    color: var(--color-primary);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.form-check label {
    font-size: 0.9rem;
    color: var(--color-light);
}
.form-check input[type="checkbox"] {
    accent-color: var(--color-primary);
    width: 1.2em;
    height: 1.2em;
}

.contact-form .button {
    width: 100%;
    text-align: center;
}


/* Responsive adjustments for Contact page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }
}
@media (max-width: 768px) {
    .contact-grid {
        padding: 1.5rem;
    }
}

/* ======================= FOOTER ======================= */
.main-footer {
    background-color: var(--color-dark);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--color-primary);
}

.footer-logo
{
    font-size: 24px;
    color: #550C18;
    font-weight: 700;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--color-white);
}
.footer-column p, .footer-column li {
    font-size: 0.9rem;
    color: var(--color-light);
}
.footer-column ul li {
    margin-bottom: 0.75rem;
}
.footer-column a:hover { color: var(--color-white); }
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-mid);
    font-size: 0.8rem;
    color: var(--color-mid);
}

/* ======================= ANIMATIONS ======================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add delays for staggered animations */
.achievement-card:nth-child(2), .process-step:nth-child(2), .feat-card:nth-child(2), .benefit-item:nth-child(2) { transition-delay: 0.2s; }
.achievement-card:nth-child(3), .process-step:nth-child(3), .feat-card:nth-child(3), .benefit-item:nth-child(3) { transition-delay: 0.4s; }

/* ======================= RESPONSIVE STYLES ======================= */
@media (max-width: 992px) {
    .who-we-are-content {
        grid-template-columns: 1fr;
    }
    .who-we-are-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.5rem; margin-top: 20px;}
    h2 { font-size: 2rem; }
    section { padding: 4rem 0; }
    .menu-card-footer
    {
        flex-direction: column;
    }
    .details-item
    {
        gap: 0.5rem;
    }
    
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--color-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right var(--transition-speed) ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }
    .nav-menu.is-active {
        right: 0;
    }
    .nav-link { font-size: 1.2rem; }
    
    .nav-toggle.is-active .hamburger { background: transparent; }
    .nav-toggle.is-active .hamburger::before { transform: rotate(45deg); top: 0; }
    .nav-toggle.is-active .hamburger::after { transform: rotate(-45deg); bottom: 0; }
    
    .process-steps::before { left: 1.5rem; }
    .process-step { gap: 1.5rem; }
    .step-number { width: 3rem; height: 3rem; font-size: 1.2rem; }
}

/* ==========================================================================
   AGE VERIFICATION POPUP STYLES
   ========================================================================== */
body.popup-active {
    overflow: hidden;
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    
    /* Centering the popup */
    display: grid;
    place-items: center;
    padding: 1rem;
    
    /* Background & Blur */
    background-color: rgba(30, 22, 17, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    /* Animation */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.age-gate-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.age-gate-popup {
    background-color: var(--color-dark);
    padding: 3rem 4rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 500px;
    width: 100%;
    position: relative;

    /* Animation */
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.age-gate-overlay.is-visible .age-gate-popup {
    transform: scale(1);
}

.age-gate-popup h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.age-gate-popup p {
    color: var(--color-light);
    margin-bottom: 2.5rem;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--color-light);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.popup-close:hover {
    color: var(--color-white);
    transform: rotate(90deg);
}

.popup-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.popup-actions .button {
    min-width: 120px;
}

/* New secondary button style for "No" */
.button-secondary {
    background-color: transparent;
    color: var(--color-light);
    border: 2px solid var(--color-mid);
}

.button-secondary:hover, .button-secondary:focus {
    background-color: var(--color-mid);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   THANKS PAGE STYLES
   ========================================================================== */

.thanks-section {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 160px); /* Adjust based on header/footer height */
    padding: 2rem 0;
    background-color: var(--color-background);
}

.thanks-card {
    background-color: var(--color-dark);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 550px;
    width: 90%;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.thanks-card h1 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.thanks-card p {
    color: var(--color-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.thanks-card .button {
    display: inline-block;
    width: auto;
}

/* SVG Animated Checkmark Styles */
.animated-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.checkmark-svg {
    width: 100%;
    display: block;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: var(--color-primary);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 4;
    stroke: var(--color-primary);
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}