/* Import base styles from styles.css */
/* This file contains specific styles for the landing page */

/* Override header position for landing page */
header {
    position: fixed !important;
    top: 0 !important;
    width: 100%;
    border-radius: 0 !important;
}

/* Prevent page overflow */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(5px);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero h1 span {
    color: orange;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.review-card {
     background: white;
     border-radius: 12px; 
     padding: 20px; 
     margin: 15px auto; 
     max-width: 600px; 
     box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
     text-align: left; }
.review-header { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 10px; 
}

/* ===== REVIEWS SECTION (Trustindex Widget) ===== */
.reviews-section {
    padding: 4rem 0;
    background: var(--white);
}

.trustindex-widget-container {
    margin-top: 2rem;
    width: 100%;
    overflow-x: hidden;
    min-height: 400px;
}

/* Ensure Elfsight/Trustindex widget elements are responsive */
.trustindex-widget-container > div,
.trustindex-widget-container iframe,
.trustindex-widget-container .elfsight-app-63e19a7d-de40-4c89-804a-6afc500ae80c {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    overflow: hidden !important;
}

/* Handle any nested elements within the widget */
.trustindex-widget-container * {
    box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .reviews-section {
        padding: 3.5rem 0;
    }

    .trustindex-widget-container {
        margin-top: 1.8rem;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }

    .trustindex-widget-container {
        margin-top: 1.5rem;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 2rem 0;
    }

    .trustindex-widget-container {
        margin-top: 1rem;
        min-height: 280px;
    }
}

@media (max-width: 500px) {
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .hero .container {
        padding: 0 1rem;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 5rem 0;
    background: #fcf9f5;
}

.about-content {
    display: block;
}

.about-text {
    color: var(--text-dark);
    line-height: 1.8;
}

.about-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.about-text h4:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.services-section {
    padding: 4rem 0;
    background: var(--white);
}

.services-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.services-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: var(--off-white);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-item.active {
    background: var(--white);
    border-color: var(--gold-light);
}

.service-item i {
    color: orange;
    font-size: 1.1rem;
}

.service-item.active i {
    color: orange;
}

.service-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.service-item.active span {
    color: orange;
    font-weight: 600;
}

.service-item.hidden {
    display: none;
}

.services-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: orange;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.services-more-btn:hover {
    background: orange;
    transform: translateY(-2px);
}

.services-more-btn i {
    transition: var(--transition);
}

.services-more-btn.expanded i {
    transform: rotate(180deg);
}

.about-features-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-features-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

/* ===== HOW TO ORDER SECTION ===== */
.how-to-order-section {
    padding: 4rem 0;
    background: #fcf9f5;
}

.how-to-order-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.how-to-order-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.order-steps-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.order-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.order-step:last-child {
    border-bottom: none;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: orange;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.order-contact-info {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.contact-paragraph {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-link {
    color: orange;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.bulk-order-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(201, 169, 110, 0.08);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    border-color: var(--gold-light);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 2rem;
    color: orange;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gold-pale); 
    border-radius: 50%;
    flex-shrink: 0;
}
.contact-item i:hover {
    background: orange; 
    color: var(--white);
}

.contact-item h3 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0;
    margin-right: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.contact-map.hidden {
    display: none;
}

.location-trigger {
    cursor: pointer;
    transition: var(--transition);
    color: var(--gold-dark);
}

.location-trigger:hover {
    background: var(--white); 
    color: var(--gold-dark);
}

.location-trigger:hover i {
    color: var(--white);
}

.map-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.map-close-btn:hover {
    background: var(--gold);
    color: white;
}

.map-close-btn i {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.map-close-btn:hover i {
    color: white;
}

/* ===== SHOP LINK ===== */
.shop-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid orange;
    color: orange;
    transition: var(--transition);
    text-decoration: none;
}

.shop-link:hover {
    background: orange;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
}

.shop-link i {
    font-size: 1.1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
        .container {
        padding: 0 16px;
    }
    .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.header-inner {
        position: relative;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 820px) {
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 0.5rem;
        right: 0.5rem;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        z-index: 1001;
    }
    
    .nav-links.open {
        display: flex;
        padding: 1.2rem 1rem;
        background: rgba(255, 255, 255, 0.964);
        backdrop-filter: blur(0.1px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 1rem;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    }
    
    .nav-links.open a {
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        font-size: 1rem;
    }
    
    .nav-links a.active::after {
        width: 18%;
    }
    
    .nav-links.open a:last-child {
        border-bottom: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.open {
        color: var(--gold);
    }
    
    .header-inner {
        position: relative;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0.75rem;
    }
    
    .body.nav-open {
        overflow: hidden;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex: 1 1 auto;
        justify-content: flex-end;
        min-width: 0;
    }
    
    .shop-link span {
        display: flex;
    }
    
    .shop-link {
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about {
        padding: 3rem 0;
    }
    
    .contact {
        padding: 3rem 0;
    }
}

@media (max-width: 500px) {
    .container {
        padding: 0 16px;
    }
    .hero {
    position: relative;
    height: 50vh;
    width: 100%;
    overflow: hidden;
}
    .header-inner {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 1rem;
    }
    .header-actions {
         display: flex;
        align-items: center;
        gap: 1rem;
        flex: 1 1 auto;
        justify-content: flex-end;
        min-width: 0;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .contact-item {
        gap: 1rem;
    }
    
    .contact-item i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    } 
}
