/* Premium Organics - Main Stylesheet */
/* Color Scheme: Deep Teal #102c32 with #0a1f24 accents */

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

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #102c32;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Navigation Top */
nav.top {
    background-color: rgba(10, 31, 36, 0.23);
    padding: 0.5rem 0;
}

nav.top ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

nav.top a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

nav.top a:hover {
    color: #FFD700;
}

/* Main Navigation */
nav.main {
    background-color: rgba(10, 31, 36, 0.33);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

nav.main .logo {
    width: 150px;
    outline: none;
    border: none;
}

nav.main .logo .img-placeholder {
    border: none;
    outline: none;
}

nav.main ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav.main a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

nav.main a:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

/* 3D Gold Gradient Headings with Shiny Beveled Effect */
h1, h2, h3, h4 {
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 40%, #FFA500 60%, #FFD700 80%, #DAA520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.8)) 
            drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.9))
            drop-shadow(-1px -1px 1px rgba(255, 255, 200, 0.3))
            drop-shadow(0px 0px 8px rgba(255, 215, 0, 0.4));
}

/* Add extra shine effect */
h1::before, h2::before, h3::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin: 2rem 0 1rem;
}

h3 {
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem;
}

/* Video Section */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 36, 0.6);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    max-width: 900px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Navigation inside video hero - transparent background */
.video-hero nav.main {
    background-color: transparent;
}

/* Parallax Section - Homepage Only */
.parallax-section {
    position: relative;
    height: 250px;
    overflow: hidden;
    margin: 4rem 0;
}

.parallax-bg {
    position: absolute;
    top: -100%; /* Increased from -50% for more movement range */
    left: 0;
    width: 100%;
    height: 300%; /* Increased from 200% for more movement range */
    background: linear-gradient(135deg, #B8860B 0%, #8B6914 20%, #FFD700 35%, #FFA500 40%, #FFD700 45%, #DAA520 60%, #8B6914 80%, #B8860B 100%);
    will-change: transform;
}

.parallax-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 80%;
}

.parallax-content h2 {
    color: #000000;
    background: none;
    -webkit-text-fill-color: #000000;
    filter: drop-shadow(2px 2px 4px rgba(255, 215, 0, 0.3));
    font-size: 3rem;
}
/* Header - Page (for inner pages) */
header.page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    position: relative;
}

header.page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 36, 0.7);
    z-index: 0;
}

header.page .content {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
}

header.page h1 {
    text-align: center;
}

/* Arrow */
.arrow {
    margin-top: 3rem;
    animation: bounce 2s infinite;
}

.arrow a {
    color: #FFD700;
    font-size: 2rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.arrow a:hover {
    transform: translateY(10px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Buttons */
.button, .btns-full, .btns-lg, .btns-alt {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 50%, #FFA500 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.button:hover, .btns-full:hover, .btns-lg:hover, .btns-alt:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
    color: #000000;
}

.btns-full {
    width: 100%;
}

.btns-lg {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Main Sections */
main {
    background-color: #102c32;
}

section {
    padding: 5rem 0;
}

.inside-jss {
    background-color: rgba(10, 31, 36, 0.5);
}

/* Products Section */
.products {
    background-color: #102c32;
}

.products img, .products .img-placeholder {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.products a:hover img,
.products a:hover .img-placeholder {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Featured Sections */
.private-label, .safety, .profile {
    position: relative;
    min-height: 500px;
}

.featured {
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.private-label .row,
.safety .row,
.profile .row {
    min-height: 500px;
}

.private-label [class*="col"],
.safety [class*="col"],
.profile [class*="col"] {
    display: flex;
    align-items: center;
}

/* Sustainability Section */
.sustainability {
    background: linear-gradient(rgba(10, 31, 36, 0.85), rgba(10, 31, 36, 0.85)),
                url('images/sustainability-bg.jpg') center/cover;
    text-align: center;
}

/* Blog Section */
.blog {
    background-color: rgba(10, 31, 36, 0.3);
}

.post-item {
    background-color: rgba(10, 31, 36, 0.7);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.post-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.post-item .featured {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.post-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 36, 0.4);
    transition: background 0.3s ease;
}

.post-item:hover .overlay {
    background: rgba(10, 31, 36, 0.1);
}

time {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 50%, #FFA500 100%);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

time .month {
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
}

time .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Contact Section */
.contact .page {
    position: relative;
    background-size: cover;
    background-position: center;
}

.contact .page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 36, 0.7);
    z-index: 0;
}

.contact .page > * {
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: linear-gradient(rgba(10, 31, 36, 0.98), rgba(10, 31, 36, 0.98)),
                url('images/footer-bg.jpg') center/cover;
    padding: 3rem 0;
    border-top: 2px solid rgba(255, 215, 0, 0.1);
}

footer a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #FFA500;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin: 0;
}

/* Image Placeholders */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-placeholder:hover {
    border-color: rgba(255, 215, 0, 0.6);
    transform: scale(1.02);
}

/* Remove border from logo placeholder */
nav.main .logo .img-placeholder {
    border: none !important;
}

/* Responsive */
@media (max-width: 991px) {
    /* Show hamburger menu */
    .navbar-toggler {
        display: block;
    }
    
    /* Hide desktop nav menu */
    nav.main .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        flex-direction: column;
        background: rgba(10, 31, 36, 0.98);
        padding: 5rem 2rem 2rem 2rem;
        gap: 0.75rem;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        min-width: 250px;
        align-items: flex-end;
        text-align: right;
        z-index: 999;
    }
    
    nav.main .nav-menu.active {
        display: flex;
    }
    
    nav.main .nav-menu li {
        width: 100%;
    }
    
    nav.main .nav-menu a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }
    
    nav.main .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .video-hero {
        height: 70vh;
    }
    
    .parallax-section {
        height: 200px;
    }
    
    .parallax-content h2 {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    /* Hide hamburger on desktop */
    .navbar-toggler {
        display: none !important;
    }
}

@media (max-width: 768px) {
    nav.top ul {
        justify-content: center;
        gap: 1rem;
    }
    
    /* Keep logo aligned to left on mobile */
    nav.main .nav-container {
        flex-wrap: nowrap;
    }
}









/* General responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Specific handling for images inside flex containers like .img-placeholder */
.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}



/* ============================================ */
/* PART 1: CSS - ADD TO style.css */
/* Copy this to the BOTTOM of your style.css file */
/* ============================================ */

/* FAQ Section Styles */
.faq-section {
    background-color: rgba(10, 31, 36, 0.5);
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    background-color: rgba(10, 31, 36, 0.7);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-left-color: #FFD700;
}

.faq-question {
    cursor: pointer;
    position: relative;
    padding-right: 45px;
    margin: 0;
    user-select: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    font-weight: 300;
    color: #FFD700;
    background: none;
    -webkit-text-fill-color: #FFD700;
    filter: none;
    transition: all 0.3s ease;
    line-height: 1;
}

.faq-question.active::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: all 0.5s ease;
}

.faq-answer.active {
    max-height: 800px;
    opacity: 1;
    margin-top: 1.5rem;
}

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

    .faq-item {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 1.1rem;
        padding-right: 40px;
    }

    .faq-question::after {
        font-size: 2rem;
    }
}
