/* ============================================
   QAHWA 3AL MAFRAQ - MAIN STYLESHEET
   Color Palette:
   #0A0A0A - أسود فحمي (خلفيات رئيسية)
   #1A120D - أسود مائل للبني (خلفيات ثانوية)
   #2B1A12 - بني داكن جداً (خلفيات الحقول)
   #4A2C1A - بني شوكولاتة (حدود وعناصر)
   #6B4423 - نحاسي داكن (أزرار رئيسية)
   #A06A3C - ذهبي برونزي (هوفر وتفاصيل)
   #C89B5A - ذهبي فاتح (عناوين رئيسية)
   #D8C3A5 - بيج ورقي (نصوص عادية)
   #E8D8C0 - كريمي فاتح (نصوص فاتحة)
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0A0A0A;
    color: #D8C3A5;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    min-height: 100vh;
}

/* Paper Texture Overlay */
.paper-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 1200" opacity="0.04"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)"/></svg>');
    background-repeat: repeat;
    z-index: 999;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* ============================================
   CART BUTTON - TOP RIGHT
   ============================================ */
.cart-btn {
    position: fixed;
    top: 30px;
    right: 40px;
    background: transparent;
    border: 1px solid #6B4423;
    color: #E8D8C0;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-btn:hover {
    background: #6B4423;
    color: #E8D8C0;
    border-color: #A06A3C;
}

.cart-count {
    background: #C89B5A;
    color: #0A0A0A;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: url('images/hero-bg.jpeg')  no-repeat right top/cover;
}

/* Steam/Warm Light Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(200, 155, 90, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 155, 90, 0.1) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

/* Staggered Title */
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 30px;
}

.hero-title .qahwa {
    font-size: 5.5rem;
    font-weight: 600;
    color: #C89B5A;
    letter-spacing: 2px;
    display: block;
    line-height: 1;
}

.hero-title .mafraq {
    font-size: 3.5rem;
    font-weight: 500;
    color: #D8C3A5;
    letter-spacing: 1px;
    display: block;
    margin-top: -10px;
}

/* 3-line description */
.hero-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #D8C3A5;
    margin-bottom: 50px;
    line-height: 1.6;
}

.hero-description span {
    display: block;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    background: transparent;
    border: 1.5px solid #6B4423;
    color: #D8C3A5;
    padding: 14px 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(4px);
    border-radius: 40px;
}

.btn-primary {
    background: rgba(107, 68, 35, 0.2);
    border-color: #6B4423;
}

.btn-primary:hover {
    background: #6B4423;
    color: #E8D8C0;
    transform: translateY(-2px);
    border-color: #A06A3C;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-img {
    width: 100%;
    border-radius: 32px;
    margin-bottom: 30px;
    margin-top: 30px;
    
    
}

/* ============================================
   FEATURED DRINKS SECTION - CAROUSEL
   ============================================ */

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #C89B5A;
    margin-bottom: 30px;
    border-left: 4px solid #C89B5A;
    padding-left: 20px;
}

/* Swiper Container */
.swiper {
    padding: 10px 8px 50px;
    overflow: visible;
}

.swiper-slide {
    height: auto;
}

/* Drink Card */
.drink-card {
    background: #1A120D;
    border-radius: 24px;
    border: 1px solid #4A2C1A;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.drink-card:hover {
    transform: translateY(-5px);
    border-color: #C89B5A;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* صورة المشروب في الأعلى - عرض كامل */
.drink-img-top {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-bottom: 1px solid #4A2C1A;
}
/* إخفاء شريط التمرير الأفقي */
.swiper-wrapper {
    overflow: visible;
}

.swiper {
    overflow: visible;
}

/* إخفاء شريط التمرير الأفقي من الصفحة كلها */
body {
    overflow-x: hidden;
}

.container {
    overflow-x: hidden;
}

/* Placeholder لو مفيش صورة */
.drink-img-top-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(145deg, #2B1A12 0%, #1A120D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #4A2C1A;
}

.drink-img-top-placeholder span {
    font-size: 4rem;
    color: #C89B5A;
    opacity: 0.5;
}

/* Drink Info */
.drink-info {
    padding: 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.drink-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #C89B5A;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.drink-info p {
    color: #D8C3A5;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #C89B5A;
    margin: 10px 0 15px;
}

/* Order Button */
.btn-order {
    background: transparent;
    border: 1px solid #6B4423;
    color: #D8C3A5;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0 auto;
}

.btn-order:hover {
    background: #6B4423;
    color: #E8D8C0;
    border-color: #A06A3C;
    transform: scale(1.02);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #4A2C1A;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #C89B5A;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .drink-img-top {
        height: 180px;
    }
    
    .drink-info {
        padding: 20px 15px;
    }
    
    .drink-info h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.4rem;
    }
}

/* ============================================
   ORDER ONLINE SECTION
   ============================================ */

.order-section {
    background: #1A120D;
    border-radius: 32px;
    margin: 60px 0;
    border: 1px solid #4A2C1A;
    overflow: hidden;
}

.order-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
}

.order-image {
    flex: 1;
    min-width: 280px;
    background: #2B1A12;
}

.order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
}

.order-content {
    flex: 1.2;
    padding: 50px 50px 50px 40px;
}

.order-header {
    margin-bottom: 30px;
}

.order-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #C89B5A;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.order-content h2 + p {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #A06A3C;
    letter-spacing: 1.5px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.order-brand {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.brand-ar {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #A06A3C;
    letter-spacing: 1px;
}

.brand-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #C89B5A;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Cart Summary */
.cart-summary {
    background: #2B1A12;
    border-radius: 20px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    border: 1px solid #6B4423;
    margin-top: 20px;
}

.cart-icon {
    font-size: 2rem;
    background: #1A120D;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #6B4423;
}

.cart-details {
    flex: 1;
}

.cart-text {
    display: block;
    font-weight: 600;
    color: #C89B5A;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.cart-items {
    display: block;
    color: #D8C3A5;
    font-size: 0.9rem;
}

.cart-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cart {
    background: transparent;
    border: 1px solid #6B4423;
    color: #D8C3A5;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-cart:hover {
    background: #6B4423;
    color: #E8D8C0;
    border-color: #A06A3C;
}

.btn-cart.primary {
    background: rgba(107, 68, 35, 0.3);
    border-color: #6B4423;
}

.btn-cart.primary:hover {
    background: #6B4423;
}

/* Responsive */
@media (max-width: 900px) {
    .order-container {
        flex-direction: column;
    }
    
    .order-image img {
        min-height: 250px;
        max-height: 280px;
        width: 100%;
    }
    
    .order-content {
        padding: 35px;
        text-align: center;
    }
    
    .cart-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-buttons {
        justify-content: center;
    }
    
    .order-brand {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .order-content {
        padding: 25px;
    }
    
    .order-content h2 {
        font-size: 1.6rem;
    }
    
    .brand-main {
        font-size: 1.3rem;
    }
    
    .btn-cart {
        padding: 8px 16px;
        font-size: 0.7rem;
    }
    
    .cart-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}
.dog{
    
    background-size: cover;
}



/* ============================================
   FOOTER STYLES - WITH IMAGES
   ============================================ */

.footer {
    background-image: url('images/fff.jpeg');
    padding: 50px 0 30px;
    border-top: 1px solid #4A2C1A;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

/* الصورة أقصى الشمال */
.footer-image-left {
    flex: 0 0 150px;
}

.footer-image-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    
}

.footer-text-under {
    margin-top: 15px;
    text-align: center;
}

.footer-text-under p {
    color: #D8C3A5;
    font-size: 0.7rem;
    line-height: 1.4;
}

/* الأعمدة الوسطى */
.footer-col {
    flex: 1;
    min-width: 150px;
}

.footer-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #C89B5A;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-col h3.ar {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #A06A3C;
    margin-bottom: 10px;
}

.footer-col p {
    color: #D8C3A5;
    font-size: 0.8rem;
    line-height: 1.8;
    margin-bottom: 5px;
}

.footer-col a {
    color: #A06A3C;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #C89B5A;
}

/* الصورة أقصى اليمين */
.footer-image-right {
    flex: 0 0 150px;
}

.footer-image-right img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
   
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #4A2C1A;
}

.footer-bottom p {
    color: #6B4423;
    font-size: 0.7rem;
    margin-bottom: 5px;
}

.footer-quote {
    font-style: italic;
    color: #A06A3C;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1000px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-image-left, .footer-image-right {
        flex: 0 0 auto;
        width: 120px;
    }
    
    .footer-col {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #2B1A12;
    color: #C89B5A;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #6B4423;
    transition: all 0.3s;
    z-index: 100;
}

.back-to-top:hover {
    background: #6B4423;
    color: #E8D8C0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width:1000px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title .qahwa {
        font-size: 3.5rem;
    }
    
    .hero-title .mafraq {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        text-align: center;
        padding: 12px 24px;
    }
    
    .cart-btn {
        top: 15px;
        right: 20px;
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .story-quote {
        font-size: 1.1rem;
    }
    
    .story-section {
        padding: 40px 25px;
    }
    
    .vintage-room {
        padding: 40px 25px;
    }
    
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title .qahwa {
        font-size: 2.5rem;
    }
    
    .hero-title .mafraq {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cart-summary {
        flex-direction: column;
        text-align: center;
    }
}
/* ============================================
   MOBILE RESPONSIVE FIXES - ADD THIS AT THE END
   ============================================ */

/* للشاشات الصغيرة (موبايل) */
@media (max-width: 768px) {
    
    /* إصلاح مشكلة الصور في السلايدر */
    .swiper {
        overflow: visible !important;
        padding: 10px 0 40px !important;
    }
    
    .swiper-slide {
        width: 85% !important;
        margin-right: 10px !important;
    }
    
    .drink-img-top {
        height: 180px !important;
    }
    
    .drink-info {
        padding: 15px !important;
    }
    
    .drink-info h3 {
        font-size: 1.1rem !important;
    }
    
    .price {
        font-size: 1.2rem !important;
    }
    
    .btn-order {
        padding: 6px 15px !important;
        font-size: 0.7rem !important;
    }
    
    /* إصلاح الفوتر على الموبايل */
    .footer {
        background-size: cover !important;
        background-position: center !important;
    }
    
    .footer-row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 25px !important;
    }
    
    .footer-image-left, .footer-image-right {
        width: 100px !important;
        margin: 0 auto !important;
    }
    
    .footer-image-left img, .footer-image-right img {
        width: 100% !important;
        height: auto !important;
    }
    
    .footer-col {
        text-align: center !important;
        width: 100% !important;
    }
    
    /* إصلاح قسم الـ Vintage Room */
    .vintage-room {
        padding: 30px 20px !important;
    }
    
    .vintage-main {
        font-size: 2.5rem !important;
    }
    
    .vintage-word {
        font-size: 1.2rem !important;
    }
    
    /* إصلاح قسم Order Online */
    .order-content {
        padding: 25px !important;
    }
    
    .order-content h2 {
        font-size: 1.5rem !important;
    }
    
    .brand-main {
        font-size: 1.2rem !important;
    }
    
    .cart-summary {
        flex-direction: column !important;
        text-align: center !important;
        padding: 15px !important;
    }
    
    .cart-icon {
        margin: 0 auto !important;
    }
    
    .cart-buttons {
        justify-content: center !important;
    }
    
    .btn-cart {
        padding: 6px 15px !important;
        font-size: 0.7rem !important;
    }
    
    /* إصلاح الأزرار الرئيسية */
    .btn-group {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .btn {
        display: block !important;
        text-align: center !important;
        padding: 10px 20px !important;
        font-size: 0.8rem !important;
    }
    
    /* إصلاح الهيدر */
    .hero {
        min-height: 70vh !important;
        background-position: center !important;
    }
    
    .hero-content {
        text-align: center !important;
        padding: 20px 0 !important;
    }
    
    .hero-title .qahwa {
        font-size: 2.8rem !important;
    }
    
    .hero-title .mafraq {
        font-size: 1.8rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
    }
    
    /* إصلاح السلة */
    .cart-btn {
        top: 10px !important;
        right: 10px !important;
        padding: 5px 12px !important;
        font-size: 0.7rem !important;
    }
    
    /* إصلاح صفحة المنيو */
    .newspaper-menu {
        padding: 20px !important;
    }
    
    .menu-header h1 {
        font-size: 1.5rem !important;
    }
    
    .category-title {
        font-size: 1.2rem !important;
    }
    
    .item-options {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .size-selector select, .milk-selector select {
        width: 100% !important;
    }
    
    /* إصلاح صفحة الحجز */
    .booking-card {
        padding: 20px !important;
    }
    
    .session-options {
        grid-template-columns: 1fr !important;
    }
    
    /* إصلاح قسم القصة */
    .story-section {
        padding: 30px 20px !important;
    }
    
    .story-section h2 {
        font-size: 1.5rem !important;
    }
    
    .story-quote {
        font-size: 1rem !important;
    }
}

/* للشاشات الصغيرة جداً (480px وأقل) */
@media (max-width: 480px) {
    .hero-title .qahwa {
        font-size: 2rem !important;
    }
    
    .hero-title .mafraq {
        font-size: 1.4rem !important;
    }
    
    .section-title {
        font-size: 1.3rem !important;
    }
    
    .drink-info h3 {
        font-size: 1rem !important;
    }
    
    .price {
        font-size: 1.1rem !important;
    }
    
    .footer-image-left, .footer-image-right {
        width: 80px !important;
    }
}

/* إصلاح عرض الصور بشكل عام */
img {
    max-width: 100%;
    height: auto;
}

/* إصلاح مشكلة التمرير الأفقي */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A120D;
}

::-webkit-scrollbar-thumb {
    background: #6B4423;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C89B5A;
}
/* ============================================
   FOOTER IMAGE FIX FOR MOBILE
   ============================================ */

.footer {
    background-image: url('images/fff.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0 30px;
    border-top: 1px solid #4A2C1A;
    margin-top: 60px;
}

/* تأكد من ظهور الصورة على الموبايل */
@media (max-width: 768px) {
    .footer {
        background-image: url('images/fff.jpeg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
}

/* إذا الصورة لسه مش ظاهرة، استخدم لون احتياطي */
.footer {
    background-color: #0A0A0A; /* لون احتياطي */
    background-blend-mode: overlay;
}


/* ============================================
   SELECTION COLOR
   ============================================ */
::selection {
    background: #C89B5A;
    color: #0A0A0A;
}