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

:root {
    --primary-color: #E63946; /* Vibrant Red */
    --secondary-color: #F4A261; /* Orange */
    --accent-color: #E9C46A; /* Warm Yellow */
    --text-dark: #1D3557;
    --text-light: #F1FAEE;
    --bg-light: #F8F9FA;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8; /* Increased line height for readability */
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-transform: uppercase;
    position: relative;
}

.section-title.text-left {
    text-align: left;
}
.section-title.text-left::after {
    margin: 10px 0 0;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 3px;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.text-success {
    color: #2a9d8f;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
}

.mb-50 { margin-bottom: 50px; }
.mt-50 { margin-top: 50px; }
.mt-20 { margin-top: 20px; }
.text-primary { color: var(--primary-color); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c92a36;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
}

nav a:hover, nav a.active-link {
    color: var(--primary-color);
}

nav a.active-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Language Selector */
.lang-selector {
    position: relative;
    margin-left: 10px;
}

.lang-selector button {
    background: var(--bg-light);
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 15px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
}
.lang-selector button:hover {
    background: #e9ecef;
}

.lang-dropdown {
    position: absolute;
    top: 130%;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    flex-direction: column;
    min-width: 80px;
    display: none;
    overflow: hidden;
}

.lang-selector:hover .lang-dropdown {
    display: flex;
}

.lang-dropdown a {
    padding: 12px 15px;
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}
.lang-dropdown a:last-child { border-bottom: none; }
.lang-dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Page Header & Hero */
.hero, .page-header {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding-top: 80px; /* Offset for navbar */
}

.hero { height: 100vh; }
.page-header { height: 50vh; min-height: 400px; }

.hero-content, .page-header .container {
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    color: var(--white);
    line-height: 1.1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.hero p.hero-subtitle, .page-header p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Content Layouts */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.content-grid.reverse {
    direction: rtl;
}
.content-grid.reverse > * {
    direction: ltr;
}

.content-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.content-image {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.long-text-block {
    max-width: 900px;
    margin: 0 auto;
}
.long-text-block p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-align: justify;
}

/* Delivery Section */
.delivery-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.delivery-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 15px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.delivery-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.delivery-btn.whatsapp {
    background-color: #25D366;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    gap: 10px;
    border-color: #25D366;
}
.delivery-btn.whatsapp:hover {
    background-color: #20BA56;
    color: white;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 100px 0;
}
.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}
.cta-section .btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.logo-footer img {
    height: 50px;
    border-radius: 50%;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-col p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    opacity: 0.9;
}
.footer-col p i { margin-top: 5px; color: var(--accent-color); }

.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 15px;
}
.footer-links a {
    opacity: 0.9;
}
.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .content-grid.reverse {
        direction: ltr;
    }
    .content-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    nav {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 20px;
    }

    nav.active {
        display: flex;
    }

    .hero h1 { font-size: 3rem; }
    .page-header h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    
    .delivery-options { flex-direction: column; }
    .delivery-btn { width: 100%; }
}
