/* ========================================
   TWIN LAKE KITCHEN - AFRICAN RESTAURANT
   Modern, Mobile-First Design
   ======================================== */

/* CSS Variables - African Color Theme */
:root {
    --primary-red: #8B0000;
    --primary-red-dark: #6B0000;
    --primary-red-light: #A52A2A;
    --secondary-brown: #3D2314;
    --secondary-black: #1A1A1A;
    --accent-gold: #D4A017;
    --accent-orange: #E67E22;
    --accent-gold-light: #F5D76E;
    --cream: #FFF8E7;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-brown);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-red-light), var(--primary-red));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, var(--secondary-brown), var(--secondary-black));
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(29, 35, 35, 0.98);
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon img {
    height: 55px;   /* control logo size here */
    width: auto;
}

.logo-text {
    color: var(--white);
}

.logo-text h1 {
    font-size: 1.3rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.logo-text span {
    font-size: 0.7rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.nav-menu a {
    color: var(--white);
    padding: 10px 15px;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-gold);
    background: rgba(212, 160, 23, 0.1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 30px;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(61, 35, 20, 0.9), rgba(26, 26, 26, 0.85)),
        url('https://images.unsplash.com/photo-1604329760661-e71dc83f8f26?w=1920&q=80') center/cover no-repeat;
    padding: 120px 20px 80px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--accent-gold);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.hero-feature i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.hero-feature span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: 3px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

.section-dark {
    background: linear-gradient(135deg, var(--secondary-brown), var(--secondary-black));
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark h2::after {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
}

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.section-pattern {
    position: relative;
}

.section-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V6H0V4h20V1.5a2.5 2.5 0 0 1 0-5V-6H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-18H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-30H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-42H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-54H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-66H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-78H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-90H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-102H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-114H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-126H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-138H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-150H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-162H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-174H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-186H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-198H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-210H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-222H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-234H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-246H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-258H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-270H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-282H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-294H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-306H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-318H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-330H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-342H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-354H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-366H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-378H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-390H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-402H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-414H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-426H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-438H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-450H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-462H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-474H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-486H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-498H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-510H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-522H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-534H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-546H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-558H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-570H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-582H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-594H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-606H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-618H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-630H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-642H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-654H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-666H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-678H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-690H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-702H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-714H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-726H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-738H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-750H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-762H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-774H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-786H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-798H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-810H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-822H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-834H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-846H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-858H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-870H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-882H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-894H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-906H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-918H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-930H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-942H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-954H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-966H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-978H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-990H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1002H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1014H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1026H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1038H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1050H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1062H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1074H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1086H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1098H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1110H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1122H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1134H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1146H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1158H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1170H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1182H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1194H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1206H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1218H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1230H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1242H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1254H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1266H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1278H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1290H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1302H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1314H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1326H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1338H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1350H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1362H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1374H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1386H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1398H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1410H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1422H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1434H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1446H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1458H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1470H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1482H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1494H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1506H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1518H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1530H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1542H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1554H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1566H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1578H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1590H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1602H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1614H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1626H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1638H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1650H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1662H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1674H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1686H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1698H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1710H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1722H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1734H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1746H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1758H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1770H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1782H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1794H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1806H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1818H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1830H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1842H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1854H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1866H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1878H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1890H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1902H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1914H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1926H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1938H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1950H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1962H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1974H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1986H0v-2h20v-2.5a2.5 2.5 0 0 1 0-5V-1998H0v-2h20V-2000H0v2040h40v-20H20v-2.5a2.5 2.5 0 0 1 0-5z' fill='%23D4A017' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

/* ========================================
   FOOD CARDS
   ======================================== */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.food-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.food-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.food-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.food-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .food-card-image {
        height: auto;
    }

    .food-card-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.food-card:hover .food-card-image img {
    transform: scale(1.1);
}

.food-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.food-card-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.food-card-favorite:hover {
    background: var(--primary-red);
    color: var(--white);
}

.food-card-content {
    padding: 25px;
}

.food-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--secondary-brown);
}

.food-card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.food-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.food-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-red);
}

.food-price span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

/* ========================================
   WEEKLY MENU
   ======================================== */
.weekly-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.day-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.day-header {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.day-header h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
}

.day-header span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.day-content {
    padding: 20px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-name {
    flex: 1;
    font-weight: 500;
    color: var(--text-dark);
}

.menu-item-price {
    color: var(--primary-red);
    font-weight: 600;
    white-space: nowrap;
}

.menu-item .btn-whatsapp {
    padding: 6px 12px;
    font-size: 0.75rem;
    margin-left: 10px;
}

/* ========================================
   GRILLS SECTION
   ======================================== */
.grills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.grill-card {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.grill-card {
    position: relative;
    height: 420px;
}

@media (max-width: 768px) {
    .grill-card {
        height: auto;
    }

    .grill-card img {
        width: 100%;
        height: auto;
    }
}

.grill-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 30px 20px 20px;
    transform: translateY(60px);
    transition: var(--transition);
}

.grill-card:hover .grill-card-overlay {
    transform: translateY(0);
}

.grill-card-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.grill-card-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ========================================
   PROMOTIONS
   ======================================== */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.promo-card {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.promo-card.gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
}

.promo-card.dark {
    background: linear-gradient(135deg, var(--secondary-brown), var(--secondary-black));
}

.promo-card-content {
    position: relative;
    z-index: 2;
}

.promo-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.promo-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--primary-red);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--secondary-brown);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ========================================
   EVENTS & CATERING
   ======================================== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.event-card-image {
    height: 260px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .event-card-image {
        height: auto;
    }

    .event-card-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.1);
}

.event-card-content {
    padding: 25px;
}

.event-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-brown);
}

.event-card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    height: 300px;
}

@media (max-width: 768px) {
    .gallery-item {
        height: auto;
    }

    .gallery-item img {
        height: auto;
        width: 100%;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.gallery-item-overlay span {
    color: var(--white);
    font-weight: 600;
    text-align: center;
}

/* ========================================
   ANNOUNCEMENTS
   ======================================== */
.announcement-banner {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V16h20v2H23v2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: moveStripes 20s linear infinite;
}

@keyframes moveStripes {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(40px);
    }
}

.announcement-banner h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.announcement-banner p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.announcement-banner .btn {
    position: relative;
    z-index: 2;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary-brown);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--secondary-brown);
}

.contact-item-content p,
.contact-item-content a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-item-content a:hover {
    color: var(--primary-red);
}

.contact-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

.opening-hours {
    background: linear-gradient(135deg, var(--secondary-brown), var(--secondary-black));
    border-radius: var(--border-radius);
    padding: 25px;
    margin-top: 25px;
}

.opening-hours h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.opening-hours ul {
    list-style: none;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.opening-hours li span:first-child {
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    color: var(--white);
    font-size: 1.8rem;
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--secondary-brown), var(--secondary-black));
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--accent-gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact-item p,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact-item a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--accent-gold);
}

/* ========================================
   CHAT WIDGET
   ======================================== */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
}

.chat-toggle {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}

.chat-toggle:hover {
    background: var(--primary-red-dark);
    transform: scale(1.1);
}

.chat-box {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 320px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    display: none;
    animation: slideUp 0.3s ease;
}

.chat-box.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-weight: 700;
}

.chat-header-text h4 {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.chat-header-text span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chat-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
}

.chat-messages {
    padding: 20px;
    max-height: 250px;
    overflow-y: auto;
}

.chat-message {
    background: var(--light-gray);
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.chat-message.bot {
    background: var(--light-gray);
    color: var(--text-dark);
}

.chat-message.user {
    background: var(--primary-red);
    color: var(--white);
    margin-left: 30px;
}

.chat-options {
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-option-btn {
    display: block;
    width: 100%;
    padding: 10px 15px;
    background: var(--light-gray);
    border: none;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: var(--transition);
    text-align: left;
}

.chat-option-btn:hover {
    background: var(--accent-gold-light);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {

    /* Header Mobile */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, var(--secondary-brown), var(--secondary-black));
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        gap: 0;
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Hero Mobile */
    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    /* Sections Mobile */
    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Cards Mobile */
    .food-grid,
    .weekly-menu,
    .grills-grid,
    .promo-grid,
    .services-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    /* WhatsApp Float Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* Chat Widget Mobile */
    .chat-widget {
        bottom: 85px;
        right: 20px;
    }

    .chat-box {
        width: calc(100vw - 40px);
        right: -10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .food-card-content {
        padding: 20px;
    }

    .food-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .food-card-footer .btn {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 200px;
    }

    .contact-info {
        padding: 25px;
    }

    .announcement-banner {
        padding: 25px 20px;
    }

    .announcement-banner h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease forwards;
}

/* Animation Delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

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

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

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

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

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Print Styles */
@media print {

    .header,
    .whatsapp-float,
    .chat-widget,
    .footer {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 20px;
        background: var(--cream) !important;
    }

    .hero h1,
    .hero p {
        color: var(--text-dark) !important;
    }

    .section {
        page-break-inside: avoid;
    }
}

@media (max-width: 768px) {
    img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}