
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Playfair+Display:wght@400;700&display=swap');


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

/* Theme Colors */
:root {
    --background-color: rgba(15,41,58,255);
    --primary-color: rgba(226,229,200,255);
    --hover-color: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'Poppins', 'Tajawal', sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal overflow */
    direction: rtl; /* Right-to-left text direction for Arabic */
    unicode-bidi: embed; /* Ensure Arabic punctuation aligns correctly */
    font-size: 18px; /* Adjust to a comfortable reading size */
}


/* Header Styling */
.main-header {
    position: fixed;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1450px;
    margin: 0 auto;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 100px;
    width: auto;
    margin-right: 10px;
}

.cafe-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

/* Navigation Menu */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease-in-out;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--secondary-font-color);
    transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
    color: var(--hover-color);
    text-decoration: underline;
}

/* Hamburger Menu */
.hamburger {
    display: none; /* Hidden on larger screens */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-right: 20px; /* Adjust away from the edge */
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Hamburger Animation */
.hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Show Hamburger Menu */
    .hamburger {
        display: flex;
    }

    /* Dropdown Menu */
    .nav-links {
        flex-direction: column;
        position: fixed; /* Make it part of the header */
        top: 0;
        left: 0;
        background-color: var(--background-color);
        height: 100vh; /* Full height */
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        z-index: 999;
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links li {
        text-align: center;
    }

    .nav-links a {
        font-size: 1.5rem; /* Slightly larger for mobile */
    }
}
/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(15, 41, 58, 0.5);
    z-index: 1;
}

/* Logo Style */
.hero-logo {
    width: 250px;
    height: auto;
    max-width: 80%;
    transform: translateY(40%); /* Move the logo further down */
}

@media (max-width: 768px) {
    .hero-logo {
        width: 180px;
        transform: translateY(30%); /* Adjust position for mobile */
    }
}



/* Who We Are Section */
.who-we-are {
    padding: 4rem 2rem;
    background-color: var(--background-color);
    color: var(--primary-color);
}

.who-we-are .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.who-we-are-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.text-content {
    flex: 1;
    min-width: 280px;
}

.text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.text-content strong {
    color: var(--hover-color);
    font-weight: 600;
}

.image-content {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.who-we-are-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .who-we-are-content {
        flex-direction: column;
        text-align: center;
    }

    .text-content h2 {
        font-size: 2.5rem;
    }

    .text-content p {
        font-size: 1rem;
    }
}

/* Menu Section */
.menu-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--background-color);
    color: var(--primary-color);
}

.menu-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.menu-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-section p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.menu-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--background-color);
    background-color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.menu-button:hover {
    background-color: rgba(255, 255, 255, 1);
    color: var(--background-color);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-section h2 {
        font-size: 2.5rem;
    }

    .menu-section p {
        font-size: 1rem;
    }

    .menu-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}
/* Order Section */
.order-section {
    text-align: center;
    padding: 60px 20px;
    background-color: rgba(15, 41, 58, 0.9); /* Matching theme background */
    color: #fff;
}

.order-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color, #fff); /* Theme primary color */
    margin-bottom: 15px;
    text-transform: uppercase;
}

.order-section p {
    font-size: 1.1rem;
    color: #dcdcdc;
    margin-bottom: 25px;
}

/* Order Button */
.order-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--background-color);
    background-color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.order-button:hover {
    background-color: rgba(255, 255, 255, 1);
    color: var(--background-color);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.order-button:active {
    transform: translateY(1px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .order-section h2 {
        font-size: 2rem;
    }

    .order-section p {
        font-size: 1rem;
    }

    .order-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
}
/* Call Section */
.call-section {
    text-align: center;
    padding: 60px 20px;
    background-color: rgba(15, 41, 58, 0.9); /* Matching theme background */
    color: #fff;
}

.call-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color, #fff); /* Theme primary color */
    margin-bottom: 15px;
    text-transform: uppercase;
}

.call-section p {
    font-size: 1.1rem;
    color: #dcdcdc;
    margin-bottom: 25px;
}

/* Call Button */
.call-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--background-color);
    background-color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.call-button:hover {
    background-color: rgba(255, 255, 255, 1);
    color: var(--background-color);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.call-button:active {
    transform: translateY(1px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .call-section h2 {
        font-size: 2rem;
    }

    .call-section p {
        font-size: 1rem;
    }

    .call-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
}


/* Opening Hours Section */
.opening-hours {
    padding: 4rem 2rem;
    background-color: var(--background-color);
    color: var(--primary-color);
    text-align: center;
}

.opening-hours .container {
    max-width: 800px;
    margin: 0 auto;
}

.opening-hours h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.opening-hours p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hours-table {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

.hours-row:hover {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.days {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
}

.hours {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hours-row {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .days, .hours {
        font-size: 1rem;
    }
}

/* Location Section */
.location-section {
    padding: 4rem 2rem;
    background-color: var(--background-color);
    color: var(--primary-color);
    text-align: center;
}

.location-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.location-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-section p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.google-map {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-section h2 {
        font-size: 2.5rem;
    }

    .location-section p {
        font-size: 1rem;
    }

    .google-map {
        height: 300px;
    }
}
/* Gallery Section */

/* Reset direction for Gallery Section */
.gallery-section {
    direction: ltr; /* Switch back to left-to-right */
    unicode-bidi: isolate; /* Prevent RTL influence */
    text-align: center;
    
}

.gallery-section h2, .gallery-section p {
    text-align: left; /* Optional: Keep text left-aligned */
    direction: ltr; /* Ensure proper alignment */
}

.gallery-section {
    padding: 4rem 2rem;
    background-color: var(--background-color);
    color: var(--primary-color);
    text-align: center;
    
}

.gallery-section .container {
    max-width: 600px;
    margin: 0 auto;
}

.gallery-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center; /* Center-align the paragraph text */

}

.gallery-section p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center; /* Center-align the paragraph text */

}

/* Slider */
.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 600px; /* Fixed height for consistent layout */
}

.gallery-slider .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slider img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: fill; /* Fully stretches the image to fit the container */
    background-color: var(--background-color); /* Fills gaps if necessary */
}


/* Responsive Design */
@media (max-width: 768px) {
    .gallery-section h2 {
        font-size: 2.5rem;
    }

    .gallery-section p {
        font-size: 1rem;
    }

    .gallery-slider {
        height: 300px; /* Reduced height for smaller screens */
    }
}
/* Contact Us Section */
.contact-us {
    padding: 4rem 2rem;
    background-color: var(--background-color);
    color: var(--primary-color);
    text-align: center;
}

.contact-us .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-us h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-us p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icons .icon {
    font-size: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.social-icons .icon:hover {
    color: var(--hover-color);
    transform: scale(1.1);
}
/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icons .icon {
    font-size: 2.5rem;
    color: var(--primary-color, #fff); /* White color by default */
    transition: color 0.3s ease;
}

.social-icons .icon:hover {
    color: var(--accent-color, #25D366); /* Change color on hover */
}
/* Snapchat Icon Yellow */
.social-icons .snapchat {
    color: #FFFC00; /* Snapchat yellow */
}

/* Hover Effects */
.social-icons .icon:hover {
    color: var(--accent-color, #25D366); /* Change color on hover */
}

.social-icons .snapchat:hover {
    color: #FFD700; /* Darker yellow on hover */
}
/* Responsive Design */
@media (max-width: 768px) {
    .contact-us h2 {
        font-size: 2.5rem;
    }

    .contact-us p {
        font-size: 1rem;
    }

    .social-icons .icon {
        font-size: 2rem;
    }
}


/* Icon Colors (Optional) */
.icon.whatsapp {
    color: #25D366; /* WhatsApp Green */
}

.icon.email {
    color: #F2A900; /* Gold */
}

.icon.instagram {
    color: #C13584; /* Instagram Pink */
}

.icon.tiktok {
    color: #010101; /* TikTok Black */
}

/* Footer Note */
.footer-note {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-us h2 {
        font-size: 2.5rem;
    }

    .contact-us p {
        font-size: 1rem;
    }

    .social-icons .icon {
        font-size: 2rem;
    }
}
/* Section Divider */
.section-divider {
    height: 1px; /* Thin line */
    width: 100%; /* Full width */
    background-color: var(--primary-color); /* Brown color */
    opacity: 0.6; /* Slight transparency for subtlety */
}
