/*
Theme Name: Digital Menu Plus
Author: Gemini
Description: Custom theme for Digital Menu Plus agency with CRUD features and Customizer support.
Version: 1.0
*/

:root {
    --primary: #2563eb;
    --secondary: #1e293b;
    --accent: #f59e0b;
    --text: #334155;
    --bg: #ffffff;
    --light-bg: #f8fafc;
}

/* Reset & Basics */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: var(--text); background: var(--bg); }
img { max-width: 100%; height: auto; }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

/* Layout Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 12px 24px; border-radius: 8px; font-weight: 600; text-align: center; cursor: pointer; }

/* Header */
.site-header { padding: 20px 0; border-bottom: 1px solid #e2e8f0; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.site-branding h1 { font-size: 1.5rem; font-weight: 800; }
.main-navigation ul { display: flex; gap: 20px; }
.main-navigation a { font-weight: 500; }

/* Hero Section */
.hero-section { padding: 80px 0; text-align: center; background: var(--light-bg); }
.hero-content h2 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; color: var(--secondary); }
.price-tag { font-size: 1.5rem; color: var(--primary); font-weight: bold; display: block; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Features Grid (CRUD) */
.features-section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card { background: #fff; padding: 30px; border-radius: 12px; border: 1px solid #e2e8f0; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.feature-icon { font-size: 2rem; margin-bottom: 15px; }
.feature-title { font-size: 1.25rem; margin-bottom: 10px; color: var(--secondary); }
.feature-caption { font-size: 0.95rem; margin-bottom: 15px; color: #64748b; font-style: italic; }
.feature-list ul { margin-top: 10px; }
.feature-list li { margin-bottom: 8px; font-size: 0.9rem; padding-left: 20px; position: relative; }
.feature-list li::before { content: "✔"; position: absolute; left: 0; color: var(--primary); }

/* Footer */
.site-footer { background: var(--secondary); color: #fff; padding: 60px 0; text-align: center; }
.footer-contact h3 { margin-bottom: 20px; color: var(--accent); }
.footer-contact p { margin-bottom: 10px; opacity: 0.9; }

/* Responsive */
@media (max-width: 768px) {
    .site-header .container { flex-direction: column; gap: 15px; }
    .hero-content h2 { font-size: 2rem; }
}

/* ... (Keep Basic Resets from before) ... */

/* FEATURES SECTION UPDATE */
.features-section { padding: 80px 0; background: #f8fafc; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; line-height: 1.3; }
.section-title small { font-size: 1.5rem; color: #64748b; display: block; margin-top: 5px; }

.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 30px; 
}

.feature-card { 
    background: #fff; 
    border-radius: 16px; 
    padding: 30px; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); 
    transition: transform 0.2s, box-shadow 0.2s; 
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.feature-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); 
    border-color: var(--primary);
}

/* Icon */
.feature-icon-wrapper { 
    font-size: 2.5rem; 
    color: var(--primary); 
    margin-bottom: 20px; 
    background: #eff6ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* Language Blocks */
.lang-block h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.lang-block p { font-size: 0.9rem; color: #64748b; line-height: 1.5; }

/* Arabic Specifics */
.lang-ar { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; }
.lang-ar h3 { font-size: 1.2rem; }

/* Divider */
.lang-divider { 
    height: 1px; 
    background: #e2e8f0; 
    margin: 15px 0; 
    width: 100%; 
}

/* Responsive */
@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
}

/*
Theme Name: Digital Menu Plus
Author: Gemini
Description: Custom theme with Hero, Header, and Features Customizer.
Version: 2.0
*/

:root {
    --primary: #2563eb;
    --secondary: #1e293b;
    --accent: #f59e0b;
    --text: #334155;
    --bg: #ffffff;
    --light-bg: #f8fafc;
}

/* Basics */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: var(--text); background: var(--bg); }
img { max-width: 100%; height: auto; }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 12px 24px; border-radius: 8px; font-weight: 600; text-align: center; cursor: pointer; }

/* Header */
.site-header { padding: 20px 0; border-bottom: 1px solid #e2e8f0; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.site-branding h1 { font-size: 1.5rem; font-weight: 800; }
.main-navigation ul { display: flex; gap: 20px; }
.main-navigation a { font-weight: 500; }

/* Hero Section */
.hero-section { padding: 80px 0; text-align: center; background: var(--light-bg); border-bottom: 1px solid #e2e8f0; }
.hero-content h2 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; color: var(--secondary); }
.price-tag { font-size: 1.5rem; color: var(--primary); font-weight: bold; display: block; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Features Section */
.features-section { padding: 80px 0; background: #fff; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; line-height: 1.3; }
.section-title small { font-size: 1.5rem; color: #64748b; display: block; margin-top: 5px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }

.feature-card { 
    background: #fff; border-radius: 16px; padding: 30px; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); 
    border: 1px solid #f1f5f9; display: flex; flex-direction: column; 
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); border-color: var(--primary); }

.feature-icon-wrapper { 
    font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; 
    background: #eff6ff; width: 60px; height: 60px; 
    display: flex; align-items: center; justify-content: center; border-radius: 12px;
}

.lang-block h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.lang-block p { font-size: 0.9rem; color: #64748b; line-height: 1.5; }
.lang-ar { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; }
.lang-ar h3 { font-size: 1.2rem; }
.lang-divider { height: 1px; background: #e2e8f0; margin: 15px 0; width: 100%; }

/* Footer */
.site-footer { background: var(--secondary); color: #fff; padding: 60px 0; text-align: center; }
.footer-contact h3 { margin-bottom: 20px; color: var(--accent); }
.footer-contact p { margin-bottom: 10px; opacity: 0.9; }

@media (max-width: 768px) {
    .hero-content h2 { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
}


/*
Theme Name: Digital Menu Plus
Author: Gemini
Description: Custom theme with Hero, Header, and Features Customizer.
Version: 3.0
*/

:root {
    --primary: #2563eb;
    --secondary: #1e293b;
    --accent: #f59e0b;
    --text: #334155;
    --bg: #ffffff;
    --light-bg: #f8fafc;
}

/* Basics */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: var(--text); background: var(--bg); }
img { max-width: 100%; height: auto; }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 12px 24px; border-radius: 8px; font-weight: 600; text-align: center; cursor: pointer; }

/* Header */
.site-header { padding: 20px 0; border-bottom: 1px solid #e2e8f0; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.site-branding h1 { font-size: 1.5rem; font-weight: 800; }
.main-navigation ul { display: flex; gap: 20px; }
.main-navigation a { font-weight: 500; }

/* Hero Section */
.hero-section { padding: 80px 0; text-align: center; background: var(--light-bg); border-bottom: 1px solid #e2e8f0; }
.hero-content h2 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.price-tag { font-size: 1.5rem; color: var(--primary); font-weight: bold; display: block; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Features Section */
.features-section { padding: 80px 0; background: #fff; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; line-height: 1.3; }
.section-title small { font-size: 1.5rem; opacity: 0.8; display: block; margin-top: 5px; }

.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 30px; 
}

.feature-card { 
    background: #fff; border-radius: 16px; padding: 30px; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); 
    border: 1px solid #f1f5f9; display: flex; flex-direction: column; 
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); border-color: var(--primary); }

.feature-icon-wrapper { 
    font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; 
    background: #eff6ff; width: 60px; height: 60px; 
    display: flex; align-items: center; justify-content: center; border-radius: 12px;
}

.lang-block h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; opacity: 0.9; }
.lang-block p { font-size: 0.9rem; opacity: 0.8; line-height: 1.5; margin-bottom: 15px; }

/* Bullet Lists */
.feature-list { margin-top: 10px; }
.feature-list li { 
    position: relative; 
    padding-left: 20px; 
    margin-bottom: 6px; 
    font-size: 0.85rem; 
    opacity: 0.85; 
}
/* English Checkmark */
.lang-en .feature-list li::before { 
    content: "✔"; 
    position: absolute; 
    left: 0; 
    color: var(--primary); 
    font-size: 0.8rem;
}
/* Arabic Checkmark */
.lang-ar .feature-list li {
    padding-left: 0;
    padding-right: 20px;
}
.lang-ar .feature-list li::before {
    content: "✔"; 
    position: absolute; 
    right: 0; 
    color: var(--primary); 
    font-size: 0.8rem;
}

.lang-ar { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; }
.lang-ar h3 { font-size: 1.2rem; }
.lang-divider { height: 1px; background: #e2e8f0; margin: 20px 0; width: 100%; }

/* Footer */
.site-footer { padding: 60px 0; text-align: center; }
.footer-contact h3 { margin-bottom: 20px; }
.footer-contact p { margin-bottom: 10px; opacity: 0.9; }

@media (max-width: 768px) {
    .hero-content h2 { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
}

/* Bullet Lists Container */
.feature-list { 
    margin-top: 15px; 
    list-style: none; /* Remove default dots */
}

/* Common List Item Styling */
.feature-list li { 
    position: relative; 
    margin-bottom: 8px; 
    font-size: 0.9rem; 
    opacity: 0.9;
    line-height: 1.5;
}

/* English List (LTR) */
.lang-en .feature-list li {
    padding-left: 25px; /* Space for icon on left */
}
.lang-en .feature-list li::before { 
    content: "✔"; 
    position: absolute; 
    left: 0; 
    top: 2px; /* Fine-tune vertical alignment */
    color: var(--primary); 
    font-weight: bold;
}

/* Arabic List (RTL) */
.lang-ar .feature-list li {
    padding-right: 25px; /* Space for icon on right */
    padding-left: 0;     /* Reset left padding */
}
.lang-ar .feature-list li::before {
    content: "✔"; 
    position: absolute; 
    right: 0;      /* Stick to right */
    left: auto;    /* IMPORTANT: Reset left property */
    top: 2px;      /* Fine-tune vertical alignment */
    color: var(--primary); 
    font-weight: bold;
}

/* ... (Keep your top section the same) ... */

/* BUTTON STYLES (Updated) */
.btn { 
    display: inline-block; 
    padding: 12px 30px; 
    border-radius: 8px; 
    font-weight: 700; 
    text-align: center; 
    cursor: pointer; 
    text-decoration: none; /* Removes underline */
    border: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    min-width: 120px; /* Ensures button has width even with short text */
    line-height: 1.5;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* WhatsApp Float Button */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    /* Unique "Chat Bubble" Shape: Round with bottom-right corner slightly sharp */
    border-radius: 50% 50% 0 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.wa-float:hover {
    background: #20b857;
    transform: translateY(-5px) scale(1.05);
}

.wa-float i {
    margin-top: -3px; /* visual alignment fix */
}

/* Pulse Animation */
@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .wa-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}