@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-orange: #ff6b00;
  --primary-orange-hover: #e65c00;
  --bg-white: #ffffff;
  --bg-off-white: #f9f9f9;
  --text-dark: #1f1f1f;
  --text-light: #666666;
  --border-color: #eaeaea;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
body { background-color: var(--bg-off-white); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; display: flex; flex-direction: column; min-height: 100vh; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }

/* Navbar */
header { background-color: var(--bg-white); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); }
nav { max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; gap: 0.5rem; color: var(--primary-orange); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-weight: 500; font-size: 1rem; color: var(--text-dark); position: relative; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background-color: var(--primary-orange); transition: width 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn-order { background-color: var(--primary-orange); color: var(--bg-white); padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; border: none; cursor: pointer; transition: all 0.3s ease; }
.btn-order:hover { background-color: var(--primary-orange-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--bg-white); }

/* Location Page */
.page-header { text-align: center; padding: 4rem 2rem; background: linear-gradient(rgba(255, 107, 0, 0.05), rgba(255, 255, 255, 0)); }
.page-header h1 { font-size: 3rem; color: var(--primary-orange); }

.location-container { max-width: 1200px; margin: 0 auto 4rem; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon { background: rgba(255, 107, 0, 0.1); color: var(--primary-orange); padding: 1rem; border-radius: 12px; display: flex; }
.info-text h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.info-text p { color: var(--text-light); }
.map-placeholder { width: 100%; height: 400px; background: #e2e8f0; border-radius: 20px; overflow: hidden; position: relative; }
.map-placeholder iframe { width: 100%; height: 100%; border: none; }

/* Footer */
footer { background-color: var(--bg-white); border-top: 1px solid var(--border-color); padding: 3rem 2rem; text-align: center; margin-top: auto; }
footer p { color: var(--text-light); }

@media (max-width: 768px) { .nav-links { display: none; } .location-container { grid-template-columns: 1fr; } }
