/* Global Defaults */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff7ed;
  /* soft cream */
  color: #3f1b12;
  /* temple brown */
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Wide container for larger devices */
.container {
  width: 95%;
  max-width: 100%;
  /* Full width as requested */
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }

  /* Optional cap for ultra-wide */
}

/* Header */
header {
  background: linear-gradient(to right, #b91c1c, #f97316);
  /* deep red to saffron */
  color: #fefce8;
  border-bottom: 2px solid #facc15;
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* Desktop Nav */
nav.desktop-nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  align-items: center;
}

nav.desktop-nav a {
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  color: #fefce8;
}

nav.desktop-nav a:hover {
  border-color: #fefce8;
  color: #ffffff;
}

/* Mobile Nav & Hamburger */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #fefce8;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 4px;
}

.mobile-nav-overlay {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #7f1d1d;
  /* Dark red */
  padding: 16px;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

.mobile-nav-overlay.active {
  display: flex;
}

.mobile-nav-overlay a {
  color: #fefce8;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
  background: #3f1b12;
  color: #fed7aa;
  padding: 40px 0 20px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h3 {
  font-size: 1.1rem;
  color: #f97316;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-img-placeholder {
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 10px;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-menu-btn {
    display: block;
  }
}