/* Copied from turmeric.css for Black Pepper page */
.turmeric-page {
    background: #ffffff;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero-slideshow {
    position: relative;
    height: 100vh;
    /* Fallback */
    height: 100svh;
    /* Mobile modern */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    margin-top: -76px;
    /* Consistency with home page */
}

.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease, transform 10s ease;
    z-index: 0;
    transform: scale(1.1) translateY(20px);
    will-change: transform, opacity;
}

.hero-slideshow .slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1.02) translateY(0);
}

.hero-slideshow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.6) 80%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-slideshow .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 3rem;
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-slideshow .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-slideshow .hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    color: #ffffff;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-contact-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.hero-contact-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.hero-contact-btn:active {
    transform: translateY(1px);
}

/* Overview Section */
.overview-section {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.overview-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #0f0f0f);
    z-index: 2;
}

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

.section-title {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 4rem;
    color: #FFC107;
}

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

.overview-content {
    padding-right: 2rem;
}

.overview-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #475569;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: #FFC107;
    font-size: 1.5rem;
}

.feature span {
    color: #475569;
    font-size: 1rem;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

/* Specifications Section */
.specs-section {
    padding: 8rem 0;
    background: #f8fafc;
}

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

.spec-card {
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.spec-icon {
    font-size: 3rem;
    color: #FFC107;
    margin-bottom: 2rem;
}

.spec-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.spec-card ul {
    list-style: none;
    padding: 0;
}

.spec-card li {
    margin-bottom: 1rem;
    color: #475569;
}

/* Locations Section */
.locations-section {
    padding: 8rem 0;
    background: #ffffff;
}

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

.location-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
}

.location-image {
    height: 300px;
    overflow: hidden;
}

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

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

.location-content {
    padding: 2rem;
}

.location-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFC107;
}

.location-content p {
    color: #475569;
    line-height: 1.6;
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }

    .overview-grid,
    .specs-grid,
    .locations-grid,
    .quality-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .overview-grid,
    .specs-grid,
    .locations-grid,
    .quality-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
    }
}

/* Slideshow navigation dots */
.slide-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    z-index: 20;
}

.slide-dots .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slide-dots .dot.active,
.slide-dots .dot:hover {
    background-color: #FFC107;
}

/* Prev/Next buttons */
.prev-slide,
.next-slide {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background-color: rgba(255, 193, 7, 0.8);
}

.prev-slide:focus,
.next-slide:focus {
    outline: 2px solid #FFC107;
    outline-offset: 2px;
}