/*
Theme Name: The Big Bite Shawarma
Theme URI: 
Author: Antigravity
Author URI: 
Description: A premium responsive WordPress theme for The Big Bite Shawarma.
Version: 1.0
License: 
License URI: 
Text Domain: shawarma-theme
Tags: modern, responsive, food, restaurant
*/

/* WordPress overrides and responsiveness fixes */
body, html {
    overflow-x: hidden;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
}

/* Base structural fixes for overflow */
.container,
.nav-container,
.story-content,
.culinary-content,
.franchise-details-grid,
.footer-grid,
.hero-content {
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.story-section, 
.culinary-section, 
.investment-section {
    width: 100%;
    overflow: hidden;
}

/* Responsive Typography */
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }

/* Nav Bullet Points Fix */
.nav-links ul, .nav-links-ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}
.nav-links li {
    list-style: none !important;
}

@media (max-width: 992px) {
    .nav-links ul, .nav-links-ul {
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
    }
}
/* Hamburger Fix */
.menu-toggle {
    color: #fff;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 9999;
}
.menu-toggle i {
    color: #fff;
}

/* Form Responsiveness */
@media (max-width: 768px) {
    .form-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .form-row .form-group {
        width: 100%;
    }
    .enquiry-form-panel form > div:last-child {
        flex-direction: column;
    }
}

/* Additional Transitions */
.pillar-card, .invest-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar-card:hover, .invest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }
}

