/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brown-dark: #6B4423;
    --brown: #8B4513;
    --brown-light: #A0522D;
    --black: #000000;
    --black-light: #1A1A1A;
    --gold: #D4AF37;
    --gold-light: #C9A961;
    --cream: #FAF0E6;
    --cream-light: #FFF8E7;
    --white: #FFFFFF;
    --mint: #98D8C8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--brown);
    color: var(--brown);
}

.btn-outline:hover {
    background: var(--brown);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--brown);
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 24px;
    color: var(--brown);
    margin-bottom: 2px;
}

.logo .arabic {
    font-size: 18px;
    color: var(--gold);
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: var(--black);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    font-size: 24px;
    cursor: pointer;
    color: var(--gold);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--white);
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--brown);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1571115177098-24ec42ed204d?w=1920') center/cover;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(107, 68, 35, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
}

.hero-title {
    font-size: 72px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: pulseGlow 2s ease-in-out infinite;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--gold);
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    }
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) translateY(5px);
        opacity: 0.7;
    }
}

@keyframes scrollDown {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.animate-fade-up:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.4s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.6s; }
.animate-fade-up:nth-child(5) { animation-delay: 0.8s; }

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    color: var(--brown);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--brown-light);
    font-style: italic;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Featured Products */
.featured-products {
    padding: 100px 0;
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--brown);
}

.product-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}

/* Authenticity Section */
.authenticity {
    position: relative;
    padding: 100px 0;
    background: var(--brown-dark);
    color: var(--white);
    overflow: hidden;
}

.authenticity-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0.3;
}

.authenticity-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.authenticity-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--gold);
}

.authenticity-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

.signature {
    font-style: italic;
    font-size: 20px;
    color: var(--gold);
    margin-top: 30px;
}

.authenticity-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.authenticity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tea Salon */
.tea-salon {
    padding: 100px 0;
    background: var(--white);
}

.salon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.salon-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.salon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-features {
    display: grid;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature .icon {
    font-size: 32px;
    flex-shrink: 0;
    color: var(--gold);
}

.feature h3 {
    font-size: 20px;
    color: var(--brown);
    margin-bottom: 5px;
}

.feature p {
    font-size: 14px;
    color: #666;
}

.salon-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Takeaway */
.takeaway {
    padding: 100px 0;
    background: var(--cream);
}

.icon-large {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--gold);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--gold);
}

.step h3 {
    font-size: 24px;
    color: var(--brown);
    margin-bottom: 15px;
}

.step p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Events */
.events {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.events-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1464349095431-e9a21285b5f3?w=1920') center/cover;
}

.events-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(107, 68, 35, 0.6) 100%);
}

.events-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.events-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
}

.events-content p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Gallery Preview */
.gallery-preview {
    padding: 100px 0;
    background: var(--black-light);
}

.gallery-preview .section-title,
.gallery-preview .section-subtitle {
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial {
    background: var(--cream);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stars {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--gold);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    color: #333;
}

.author {
    font-weight: 600;
    color: var(--brown);
}

.rating-summary {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
}

.rating {
    font-weight: 700;
    color: var(--gold);
    font-size: 24px;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 42px;
    color: var(--brown);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item .icon {
    font-size: 32px;
    flex-shrink: 0;
    color: var(--gold);
}

.info-item h4 {
    font-size: 18px;
    color: var(--brown);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 16px;
    color: #666;
}

.info-item a {
    color: var(--brown);
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--gold);
}

.contact-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.social-links {
    display: flex;
    gap: 20px;
    font-size: 18px;
}

.social-links a {
    color: var(--brown);
    transition: color 0.3s ease;
}

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

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.footer-logo .arabic {
    font-size: 18px;
    color: var(--gold);
    display: block;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 15px;
    font-size: 24px;
    margin-top: 20px;
}

.social-icons a {
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1213px) and (min-width: 769px) {
    .hero-title { font-size: 52px; }
    .hero-subtitle { font-size: 32px; }
    .hero-tagline { font-size: 22px; }
    .section-title { font-size: 36px; }
    
    .nav-list {
        gap: 15px;
        font-size: 14px;
    }
    
    .header-actions .btn-primary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .authenticity-content,
    .salon-content,
    .contact-content {
        gap: 40px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .hero-title { font-size: 56px; }
    .hero-subtitle { font-size: 36px; }
    .section-title { font-size: 38px; }
    
    .authenticity-content,
    .salon-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        transition: left 0.3s ease;
        padding: 40px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-actions .btn-primary {
        display: none;
    }
    
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 24px; }
    .hero-tagline { font-size: 18px; }
    .hero-description { font-size: 16px; }
    .hero-cta { 
        flex-direction: column;
        width: 100%;
    }
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .trust-badges {
        gap: 10px;
    }
    
    .badge {
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .section-title { font-size: 32px; }
    .section-subtitle { font-size: 16px; }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .authenticity-text h2 { font-size: 32px; }
    .authenticity-text p { font-size: 16px; }
    
    .salon-cta {
        flex-direction: column;
    }
    .salon-cta .btn {
        width: 100%;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .events-content h2 { font-size: 32px; }
    .events-content p { font-size: 16px; }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .testimonials-slider {
        gap: 20px;
    }
    
    .contact-info h2 { font-size: 32px; }
    
    .contact-actions {
        flex-direction: column;
    }
    .contact-actions .btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 20px; }
    .hero-tagline { font-size: 16px; }
    .hero-description { font-size: 14px; }
    
    .section-title { font-size: 28px; }
    .section-subtitle { font-size: 14px; }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .logo h1 { font-size: 20px; }
    .logo .arabic { font-size: 16px; }
}
