/* --------------------
   GLOBAL STYLES
-------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* --------------------
   TOP BAR
-------------------- */
.top-bar {
  background: #111;
  color: #fff;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

.top-bar .locations span {
  margin-right: 1.5rem;
}

.top-bar .locations i {
  color: #a30000;
  margin-right: 0.3rem;
}

.top-bar .social a {
  color: #fff;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.top-bar .social a:hover {
  color: #a30000;
}

/* --------------------
   HEADER / NAV
-------------------- */
.header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  height: 100px;
  width: auto;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #a30000;
}

/* --------------------
   HERO SECTION
-------------------- */
.hero {
  background: url('images/hero.webp') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background: #a30000;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn:hover {
  background: #7c0000;
}

/* --------------------
   SECTIONS
-------------------- */
section {
  padding: 4rem 0;
}

section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #222;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.card {
  background: #f5f5f5;
  padding: 2rem;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* --------------------
   CONTACT
-------------------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.locations-grid h3 {
  color: #a30000;
  margin-bottom: 0.5rem;
}

/* --------------------
   FOOTER
-------------------- */
.footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 2rem 0;
}

.footer-social a {
  color: #aaa;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #fff;
}

/* --------------------
   DISCLAIMER POPUP
-------------------- */
#disclaimer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#disclaimer-box {
  background: #fff;
  border-radius: 8px;
  max-width: 1200px;
  width: 90%;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  text-align: left;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  animation: fadeInUp 0.4s ease;
}

#disclaimer-box h2 {
  color: #a30000;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

#disclaimer-box p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

#proceed-btn {
  display: block;
  width: 100%;
  margin-top: 15px;
  background-color: #a30000;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

#proceed-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

#proceed-btn:hover:not(:disabled) {
  background-color: #7c0000;
}

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

body.modal-open {
  overflow: hidden;
}
