/* Moe's Catering FL - Global Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --red: #C8102E;
    --orange: #F7941D;
    --yellow: #FDB913;
    --turquoise: #00A79D;
    --charcoal: #2a2a2a;
}

body { font-family: 'Open Sans', sans-serif; line-height: 1.6; color: #333; overflow-x: hidden; }

/* Header */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.header-content { max-width: 1400px; margin: 0 auto; padding: 12px 40px; display: flex; justify-content: space-between; align-items: center; }
.site-logo { height: 55px; }
nav { display: flex; align-items: center; gap: 30px; }
nav a { color: var(--charcoal); text-decoration: none; font-weight: 700; font-size: 0.85em; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.3s; }
nav a:hover, nav a.active { color: var(--orange); }
.nav-cta { background: var(--orange); color: white !important; padding: 11px 26px; border-radius: 30px; font-weight: 800; transition: all 0.3s; box-shadow: 0 4px 15px rgba(247,148,29,0.3); }
.nav-cta:hover { background: var(--red); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(200,16,46,0.4); }

/* Mobile nav */
.hamburger { display: none; background: none; border: none; font-size: 1.8em; cursor: pointer; color: var(--charcoal); }
.mobile-nav { display: none; position: fixed; top: 80px; left: 0; right: 0; background: white; padding: 20px 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 999; flex-direction: column; gap: 15px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--charcoal); text-decoration: none; font-weight: 700; font-size: 1em; text-transform: uppercase; padding: 10px 0; border-bottom: 1px solid #eee; }
.mobile-nav a:last-child { border: none; }

/* Hero shared */
.page-hero { margin-top: 80px; position: relative; min-height: 400px; display: flex; align-items: center; color: white; background-size: cover; background-position: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(42,42,42,0.7), rgba(42,42,42,0.5)); }
.page-hero-content { position: relative; z-index: 1; max-width: 700px; padding: 80px 60px; }
.page-hero h1 { font-family: 'Montserrat', sans-serif; font-size: 3.5em; font-weight: 900; text-transform: uppercase; line-height: 1.05; margin-bottom: 15px; letter-spacing: -1px; }
.page-hero p { font-size: 1.15em; margin-bottom: 25px; opacity: 0.95; line-height: 1.6; }

/* Buttons */
.btn { display: inline-block; padding: 14px 32px; border-radius: 30px; text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.9em; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s; cursor: pointer; border: none; }
.btn-orange { background: var(--orange); color: white; box-shadow: 0 4px 15px rgba(247,148,29,0.3); }
.btn-orange:hover { background: var(--red); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(200,16,46,0.4); }
.btn-white { background: white; color: var(--charcoal); }
.btn-white:hover { background: var(--yellow); transform: translateY(-2px); }
.btn-turquoise { background: var(--turquoise); color: white; }
.btn-turquoise:hover { background: #008C85; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--charcoal); color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: white; }
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: #a00d24; transform: translateY(-2px); }

/* Section spacing */
.section { padding: 80px 40px; }
.section-narrow { max-width: 1200px; margin: 0 auto; }
.section-wide { max-width: 1400px; margin: 0 auto; }
.section-title { font-family: 'Montserrat', sans-serif; font-size: 2.8em; font-weight: 900; text-transform: uppercase; color: var(--charcoal); margin-bottom: 15px; letter-spacing: -1px; text-align: center; }
.section-subtitle { font-size: 1.15em; color: #666; text-align: center; margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Cards */
.card { background: white; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); overflow: hidden; transition: all 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 25px; }
.card-body h3 { font-family: 'Montserrat', sans-serif; font-size: 1.15em; font-weight: 800; text-transform: uppercase; color: var(--charcoal); margin-bottom: 10px; }
.card-body p { color: #555; font-size: 0.95em; line-height: 1.6; margin-bottom: 15px; }

/* CTA Banner */
.cta-banner { background: var(--charcoal); color: white; text-align: center; padding: 70px 40px; }
.cta-banner h2 { font-family: 'Montserrat', sans-serif; font-size: 2.5em; font-weight: 900; text-transform: uppercase; margin-bottom: 15px; }
.cta-banner p { font-size: 1.1em; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; opacity: 0.9; }

/* Footer */
footer { background: var(--charcoal); color: white; padding: 70px 60px 40px; }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand img { height: 50px; margin-bottom: 20px; }
.footer-about { font-size: 0.95em; line-height: 1.8; color: rgba(255,255,255,0.8); }
.footer-col h3 { font-family: 'Montserrat', sans-serif; font-size: 1em; font-weight: 800; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s; font-size: 0.9em; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 30px; text-align: center; color: rgba(255,255,255,0.6); font-size: 0.85em; line-height: 1.8; }
.footer-social { display: flex; gap: 12px; margin-top: 15px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15); transition: background 0.3s; }
.footer-social a:hover { background: var(--orange); }
.footer-social a svg { width: 18px; height: 18px; fill: white; }

/* Responsive */
@media (max-width: 968px) {
    .hamburger { display: block; }
    nav { display: none; }
    .page-hero h1 { font-size: 2.5em; }
    .page-hero-content { padding: 60px 30px; }
    .section { padding: 60px 20px; }
    .section-title { font-size: 2em; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2em; }
}

/* Phone number link */
.nav-phone { color: var(--orange); font-weight: 800; font-size: 0.95em; text-decoration: none; white-space: nowrap; }
.nav-phone:hover { color: var(--red); }
.footer-phone { display: block; margin-top: 12px; }
.footer-phone a { color: var(--orange); font-weight: 700; font-size: 1.1em; text-decoration: none; }
.footer-phone a:hover { color: white; }
.cta-phone { margin-top: 15px; font-size: 1.2em; }
.cta-phone a { color: white; font-weight: 700; text-decoration: none; border-bottom: 2px solid rgba(255,255,255,0.5); }
.cta-phone a:hover { border-bottom-color: white; }
