/* style.css - NURA Saffron - Final Fixed Version */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-dark: #B8960C;
    --gold-light: #F5E6A3;
    --cream: #FDFBF7;
    --cream-dark: #F0EDE4;
    --black: #1A1A1A;
    --black-soft: #2A2A2A;
    --gray: #6B6B6B;
    --white: #FFFFFF;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background-color: var(--cream);
    color: var(--black);
    direction: ltr;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 400;
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--black);
    margin: 0;
}

.logo p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin: 0;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-btn:hover, .lang-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* Navigation */
.nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav a {
    text-decoration: none;
    color: var(--black);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-weight: 500;
    position: relative;
}

.nav a:hover, .nav a.active {
    color: var(--gold);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav a:hover::after, .nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 10px 28px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--black);
}

/* Hero Slider */
.hero {
    margin-top: 90px;
    height: 85vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 550px;
}

.slide-content h3 {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.slide-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 500;
}

.slide-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-btn {
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* Features Grid */
.features {
    padding: 80px 0;
    background: var(--cream-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-card {
    padding: 40px 25px;
    background: var(--white);
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Packaging Grid */
.packaging {
    padding: 80px 0;
    background: var(--cream);
}

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.packaging-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.packaging-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.packaging-card p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* About Section */
.about-home {
    padding: 100px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--gray);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212,175,55,0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col a {
    color: var(--gray);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.75rem;
}

/* RTL Support */
[dir="rtl"] .slide-content {
    left: auto;
    right: 10%;
    text-align: right;
}

[dir="rtl"] .nav a::after {
    left: auto;
    right: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid, .packaging-grid, .footer-grid, .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero {
        height: 70vh;
    }
    .slide-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--cream);
        padding: 20px;
    }
    .nav.open {
        display: block;
    }
    .nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .slide-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }
    .slide-content h2 {
        font-size: 1.5rem;
    }
}