/* 🌍 General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🌍 Full-Screen Setup */
body, html {
  width: 100%;
  height: 100%;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* NOTE: Add this line in your HTML <head> to ensure proper scaling on devices */
/* <meta name="viewport" content="width=device-width, initial-scale=1.0"> */

/* 🏠 HERO SECTION */
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 100px;
}

/* 🔹 Smooth Overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

/* 🏠 HERO BUTTONS */
.hero-buttons {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 1000;
}

/* 🔹 White Rounded Buttons */
.hero-btn {
  background: white;
  color: black;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  word-break: normal;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* 🔹 Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  min-width: auto;
  z-index: 999999;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: black;
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: #f5f5f5;
  color: black;
  text-decoration: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* 🔹 HERO CONTENT */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: white;
  max-width: 700px;
  text-align: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

.highlight {
  font-weight: 900;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(200,200,200,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-logo {
  width: 220px;
  height: auto;
  margin-top: 20px;
}

/* 🔹 Content Sections */
.section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #2a2a2a;
}

.content-box {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.subheading {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #2e7d32;
}

.highlight-box {
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

ul {
  padding-left: 1.5rem;
  margin-top: 1rem;
}

ul li {
  margin-bottom: 0.5rem;
}


/* 🔑 COOKIE NOTICE */
.cookie-notice {
  display: none;
  opacity: 0;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  max-width: 90%;
  width: 400px;
  z-index: 99999;
  transition: opacity 0.5s ease-in-out;
}

.cookie-notice.active {
  display: flex;
  opacity: 1;
}

.cookie-notice.hidden {
  opacity: 0;
  pointer-events: none;
  display: none !important;
}

.cookie-notice a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: bold;
}

.cookie-notice button {
  background: #ffd700;
  color: black;
  border: none;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.cookie-notice button:hover {
  background: #e6c200;
}

/* ✅ MODAL STYLING */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex !important;
  z-index: 1100;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  text-align: left;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease-in-out;
  position: relative;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  z-index: 1200;
}

.modal-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
  font-weight: bold;
}

#contact-modal form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact-modal label {
  font-weight: bold;
  color: #333;
  font-size: 1rem;
}

#contact-modal input,
#contact-modal textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  transition: border-color 0.3s ease-in-out;
}

#contact-modal input:focus,
#contact-modal textarea:focus {
  border-color: #ffd700;
  outline: none;
}

#contact-modal textarea {
  height: 120px;
  resize: vertical;
}

#contact-modal button[type="submit"] {
  background: #ffd700;
  color: black;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  border: none;
  width: 100%;
  font-size: 1rem;
}

#contact-modal button[type="submit"]:hover {
  background: #e6c200;
}

.modal-content .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #888;
  cursor: pointer;
}

.modal-content .close:hover {
  color: #ffd700;
}

/* ✅ Buttons */
.btn {
  display: inline-block;
  background: #ffd700;
  color: black;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  background: #e6c200;
}

/* 🔘 Centered Call-to-Action Button Styling */
.btn-center {
  display: block;
  margin: 30px auto 0 auto;
  text-align: center;
}

/* ========================= */
/* ===== RESPONSIVE ======== */
/* Tablet (iPad) */
@media (max-width: 1024px) {
  .hero {
    padding: 30px 50px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-logo {
    width: 180px;

  }
}