/* CSS Variables for Premium Theme */
:root {
    --bg-color: #231A14;        /* Dark Brown Background */
    --surface-color: #2e231b;   /* Slighter Lighter Brown for Cards */
    --accent-gold: #c69c6d;     /* Deep Gold / Bronze */
    --accent-gold-light: #e3bc90; 
    --text-main: #f0e6d2;       /* Soft off-white for text readability */
    --text-muted: #b8a691;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Global Reset & Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Typography & Alignment */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Eyebrow text above section titles */
.eyebrow-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    opacity: 0.85;
}

.divider {
    height: 2px;
    width: 60px;
    background-color: var(--accent-gold);
    margin: 0 auto 2rem auto;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-gold);
    letter-spacing: 5px;
    margin-bottom: 10px;
}
.loader-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(35, 26, 20, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(198, 156, 109, 0.1);
    transition: var(--transition);
}

.navbar .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

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

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

.btn-outline {
    border: 1px solid var(--accent-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    color: var(--accent-gold) !important;
}

.btn-outline::after {
    display: none;
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--bg-color) !important;
}

/* Sections Global */
.section {
    padding: 6rem 1.5rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--bg-color);
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid var(--accent-gold);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(198, 156, 109, 0.3);
}

/* Highlights Grid Section */
.highlights-grid-section {
    background-color: var(--surface-color);
}

.highlights-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-box {
    background-color: var(--bg-color);
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(198, 156, 109, 0.15);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.highlight-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.highlight-box i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.highlight-box p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #35281e 0%, var(--bg-color) 70%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3); /* Slight darkening if needed */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* About Section */
.about p {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.1rem;
    color: var(--text-main);
}
.about strong {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Combos Section */
.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.combo-card {
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(198, 156, 109, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.combo-card:hover {
    border-color: rgba(198, 156, 109, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.tag {
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background-color: var(--accent-gold);
    color: var(--bg-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 3rem;
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.img-wrap {
    width: 100%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 4px;
    background-color: transparent;
}

.img-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.combo-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.price-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Curated Combo Section Overrides */
.curated-combos {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.curated-combos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 156, 109, 0.3), transparent);
}

.curated-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Combo Item Wrapper — holds label + card */
.combo-item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Outside heading label */
.combo-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    padding-left: 0.3rem;
}

.combo-number {
    background-color: var(--accent-gold);
    color: var(--bg-color);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.combo-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold-light);
    letter-spacing: 0.5px;
}

.highlight-card {
    border: 1px solid rgba(198, 156, 109, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.highlight-card .img-wrap img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Card Title — shown above the image */
.card-title {
    font-size: 1.5rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    font-family: var(--font-heading);
    text-align: center;
}

.cta-wrapper {
    margin-top: 4rem;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(198, 156, 109, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.icon-wrap {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Custom Solutions */
.custom-solutions {
    background-color: var(--surface-color);
}
.solutions-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testi-card {
    background-color: var(--bg-color);
    border: 1px solid rgba(198, 156, 109, 0.15);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.testi-card:hover {
    border-color: rgba(198, 156, 109, 0.5);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.quote {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.author-info strong {
    color: var(--accent-gold);
}
.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta {
    background: radial-gradient(circle at center, #2e231b 0%, var(--bg-color) 100%);
    border-top: 1px solid rgba(198, 156, 109, 0.1);
}

/* Order Form Section */
.order-form-section {
    background-color: var(--surface-color);
    border-bottom: 1px solid rgba(198, 156, 109, 0.1);
}

.order-form-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-color);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(198, 156, 109, 0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--surface-color);
    border: 1px solid rgba(198, 156, 109, 0.3);
    border-radius: 4px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 5px rgba(198, 156, 109, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.w-100 {
    width: 100%;
}

/* Footer Matches the Image Snippet Colors & Styling */
.footer {
    background-color: var(--bg-color);
    padding: 4rem 1.5rem 2rem 1.5rem;
}

.footer-title {
    color: #ce8749; /* Matching the image's specific reddish-gold */
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto 3rem auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    width: 100%;
}

.contact-item i {
    color: #ce8749;
    font-size: 1.2rem;
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.contact-item p {
    color: #ccb9a6;
    font-size: 1rem;
    margin: 0;
}

.muted {
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #ccb9a6;
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a i {
    color: #ce8749;
    width: 20px;
    text-align: center;
}

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

.copyright {
    border-top: 1px solid rgba(198, 156, 109, 0.1);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--accent-gold);
    cursor: pointer;
    z-index: 1001;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .navbar {
        padding: 1rem 1.5rem;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        z-index: 1000;
        border-left: 1px solid rgba(198, 156, 109, 0.1);
    }
    .nav-links.active {
        right: 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .highlights-box-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .highlight-box {
        padding: 2rem 1rem;
    }
    .hero {
        height: 80vh;
        min-height: 400px;
    }
    .combos-grid {
        grid-template-columns: 1fr;
    }
    .curated-grid {
        grid-template-columns: 1fr;
    }
    .combo-category-header {
        padding: 0 1rem;
    }
    .combos-grid {
        grid-template-columns: 1fr;
    }
    .exclusive-hero-card {
        max-width: 100%;
    }
}

/* ===================================================
   Combo Category Sections (Budget / Premium / Exclusive)
   =================================================== */

.combo-category-section {
    padding-top: 5rem;
    padding-bottom: 0;
}

.combo-category-section > .container {
    padding-bottom: 0;
}

.combo-category {
    padding: 5rem 1.5rem;
    position: relative;
}

/* Alternating background for visual separation */
.combo-category:nth-child(odd) {
    background-color: var(--bg-color);
}
.combo-category:nth-child(even) {
    background-color: var(--surface-color);
}

/* Subtle top border separator */
.combo-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 156, 109, 0.25), transparent);
}

.combo-category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.combo-category-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.35rem 1.2rem;
    border-radius: 40px;
    margin-bottom: 1rem;
}

/* Badge colors */
.budget-badge {
    background-color: rgba(198, 156, 109, 0.15);
    border: 1px solid rgba(198, 156, 109, 0.4);
    color: var(--accent-gold-light);
}

.premium-badge {
    background-color: rgba(180, 130, 70, 0.2);
    border: 1px solid rgba(198, 156, 109, 0.6);
    color: #f0c880;
}

.exclusive-badge {
    background: linear-gradient(90deg, rgba(198, 156, 109, 0.3), rgba(240, 200, 128, 0.3));
    border: 1px solid var(--accent-gold);
    color: #ffd97a;
    box-shadow: 0 0 12px rgba(198, 156, 109, 0.25);
}

.custom-badge {
    background-color: rgba(192, 192, 192, 0.15);
    border: 1px solid rgba(192, 192, 192, 0.4);
    color: #dfdfdf;
}

.combo-category-title {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
}

.combo-category-subtitle {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 0.6rem;
    font-weight: 400;
    opacity: 0.9;
}

.combo-category-bestfor {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.combo-category-bestfor span {
    color: var(--accent-gold);
    font-weight: 600;
    margin-right: 0.3rem;
}

/* Exclusive: single image, center-aligned and larger */
.exclusive-single-grid {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.exclusive-hero-card {
    max-width: 560px;
    width: 100%;
    border: 1px solid rgba(198, 156, 109, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(198, 156, 109, 0.1);
}

.exclusive-hero-card .img-wrap {
    margin-bottom: 0;
}

/* Responsive: stack combo grids on mobile */
@media (max-width: 768px) {
    .combo-category-title {
        font-size: 1.7rem;
    }
    .combos-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   Combo Picker — "What kind of order are you looking for?"
   =================================================== */

.combo-picker-question {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
}

.combo-picker {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.combo-pick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    padding: 1.5rem 2.2rem;
    border-radius: 12px;
    border: 1px solid rgba(198, 156, 109, 0.2);
    background-color: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    min-width: 170px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.combo-pick-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.combo-pick-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.pick-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.pick-label {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pick-sub {
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    opacity: 0.75;
    text-align: center;
    line-height: 1.4;
}

/* Budget tile */
.budget-pick {
    border-color: rgba(198, 156, 109, 0.3);
    color: var(--accent-gold-light);
}
.budget-pick:hover {
    border-color: var(--accent-gold);
    background-color: rgba(198, 156, 109, 0.07);
}

/* Premium tile */
.premium-pick {
    border-color: rgba(240, 200, 128, 0.35);
    color: #f0c880;
}
.premium-pick:hover {
    border-color: #f0c880;
    background-color: rgba(240, 200, 128, 0.08);
}

/* Exclusive tile */
.exclusive-pick {
    border-color: rgba(255, 217, 122, 0.45);
    color: #ffd97a;
    box-shadow: 0 0 18px rgba(255, 217, 122, 0.06);
}
.exclusive-pick:hover {
    border-color: #ffd97a;
    background-color: rgba(255, 217, 122, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 217, 122, 0.12);
}

/* Custom tile */
.custom-pick {
    border-color: rgba(192, 192, 192, 0.45);
    color: #dfdfdf;
    box-shadow: 0 0 18px rgba(192, 192, 192, 0.06);
}
.custom-pick:hover {
    border-color: #dfdfdf;
    background-color: rgba(192, 192, 192, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(192, 192, 192, 0.12);
}

@media (max-width: 600px) {
    .combo-picker {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .combo-pick-btn {
        width: 100%;
        max-width: 320px;
        padding: 1.2rem 1.5rem;
    }
}

/* ===================================================
   Product Code Badge — shown below each combo image
   =================================================== */

.product-code {
    width: 100%;
    padding: 0.55rem 1rem;
    background-color: rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(198, 156, 109, 0.2);
    border-radius: 0 0 6px 6px;
    font-size: 0.82rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-gold-light);
    text-align: center;
    text-transform: uppercase;
}

.code-label {
    font-weight: 400;
    color: var(--text-muted);
    margin-right: 0.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Premium tier accent */
.premium-code {
    color: #f0c880;
    border-top-color: rgba(240, 200, 128, 0.3);
}

/* Exclusive tier accent */
.exclusive-code {
    color: #ffd97a;
    border-top-color: rgba(255, 217, 122, 0.4);
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 0.88rem;
    letter-spacing: 1.2px;
}
