/* ======================== */
/* Global Reset & Body     */
/* ======================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  /* Prevent odd auto-zoom / text scaling on mobile */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Arial', sans-serif;
  color: #fff;
  background-color: #000;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ======================== */
/* Animations               */
/* ======================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================== */
/* Header                   */
/* ======================== */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  background: transparent;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  max-height: 180px;
  max-width: 180px;
  flex-shrink: 0;
}

.logo-container img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a.active {
  color: #888;
  pointer-events: none; /* Optional: disable click */
  cursor: default;
}

nav a:hover {
  color: #ff9800;
}

/* ======================== */
/* Hero Section             */
/* ======================== */
.hero {
  background-image: url("Background_Image_2650x1600.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #000;
  height: 100vh;      /* fallback for older mobile browsers */
  min-height: 100svh; /* safe viewport height on modern mobile */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* Optional container for hero text to control width */
.hero-center {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

/* Avoid awkward breaks on long words */
.hero h1, .hero h2, .hero p {
  overflow-wrap: anywhere;
  word-break: normal;
}

/* ======================== */
/* Hero Text Styling        */
/* ======================== */
.hero h2,
.hero p,
.hero a {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
}

/* Fluid sizes so they don't overflow on phones */
.hero-center h2:nth-child(1) {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2.5vw + 0.4rem, 1.4rem);
  letter-spacing: 1.5px;
  color: #e0e0e0;
  margin-bottom: 5px;
  animation-delay: 0.3s;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}

.hero-center h2:nth-child(2) {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.3rem, 3.5vw + 0.4rem, 1.9rem);
  color: #ffffff;
  margin-bottom: 20px;
  animation-delay: 0.5s;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.main-heading {
  color: #ff9800;
  font-size: clamp(1.4rem, 4vw + 0.4rem, 2rem);
  text-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
  animation: fadeInUp 1.2s ease-out;
}

.tagline {
  font-size: clamp(0.95rem, 2.5vw + 0.2rem, 1.1rem);
  color: #fff;
  animation-delay: 0.9s;
  margin-bottom: 25px;
}

.cta-button {
  background-color: #ff9800;
  color: white;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  animation-delay: 1.1s;
}

.cta-button:hover {
  background-color: #e67e00;
}

/* Welcome text repositioned */
.welcome-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 0.9rem;
  color: #ccc;
  z-index: 1;
  font-family: 'Arial', sans-serif;
}

/* ======================== */
/* Footer                   */
/* ======================== */
footer {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 40px;
}

/* ======================== */
/* Contact Page             */
/* ======================== */
.contact-page .contact-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("contact-us background.png") no-repeat center center / cover;
  color: white;
  padding: 100px 20px 40px;
  position: relative;
}

.contact-page .contact-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.contact-page .contact-section {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 30px;
  border-radius: 8px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

.contact-page .contact-section h2,
.contact-page .contact-section p,
.contact-page .contact-form label {
  color: #fff;
}

/* (Form styles stay in case you re-enable it later) */
.contact-page .contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  background-color: #fff;
  color: #000;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus {
  outline: 2px solid #ff9800;
}

.contact-page .contact-form button {
  background-color: #ff9800;
  color: #fff;
  padding: 12px 20px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-page .contact-form button:hover {
  background-color: #e67e00;
}

/* Display-only contact details (current setup) */
.contact-page .contact-details {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 20px;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ff9800;
  border-radius: 6px;
  color: #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-page .contact-details p {
  margin-bottom: 12px;
}

.contact-page .contact-details a {
  color: #ff9800;
  text-decoration: none;
  font-weight: bold;
}

.contact-page .contact-details a:hover {
  text-decoration: underline;
}

/* ======================== */
/* About Section Styling    */
/* ======================== */
.about-section {
  padding: 100px 40px;
  background-color: #0d0d0d;
  color: #ddd;
  text-align: center;
  font-family: 'Cinzel', serif;
  animation: fadeInUp 1.5s ease-out;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #ff9800;
  text-shadow: 0 0 8px rgba(255, 152, 0, 0.5);
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ccc;
}

/* ======================== */
/* Services Page Styling    */
/* ======================== */
.services-section {
  padding: 120px 40px 60px;
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeInUp 1.5s ease-out;
  color: #eee;
}

.services-section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: #ff9800;
  font-family: 'Cinzel', serif;
  text-shadow: 0 0 8px rgba(255, 152, 0, 0.4);
}

.services-section p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #ccc;
}

.service-category {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #111;
  border-left: 4px solid #ff9800;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 152, 0, 0.1);
}

.service-category h3 {
  color: #ff9800;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: 'Cinzel', serif;
  text-shadow: 0 0 6px rgba(255, 152, 0, 0.5);
}

.service-category ul {
  padding-left: 20px;
  list-style-type: disc;
}

.service-category li {
  margin-bottom: 8px;
  color: #ddd;
  line-height: 1.6;
}

/* ======================== */
/* Responsive Tweaks        */
/* ======================== */

/* Tighten header/nav on small screens so it doesn’t overlap hero text */
@media (max-width: 900px) {
  header { padding: 14px 18px; }
  nav { gap: 16px; }
  nav a { font-size: 0.95rem; }
}

/* Give the hero text breathing room on tablets/phones */
@media (max-width: 700px) {
  .hero {
    padding: 0 16px;
    background-position: center;
  }
  .hero h2, .hero p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Stack/wrap header on very small phones */
@media (max-width: 520px) {
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 8px;
  }
  nav {
    width: 100%;
    justify-content: flex-end;
    gap: 14px;
  }
  .logo-container {
    max-width: 72px;
    max-height: 72px;
  }
  .contact-page .contact-section {
    padding: 22px;
  }
  .contact-page .contact-details {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* Extra-tight phones */
@media (max-width: 420px) {
  header { padding: 12px 14px; }
  nav { gap: 12px; }
  nav a { font-size: 0.9rem; }
}

/* Optional: subtle header readability on mobile over busy images */
@media (max-width: 700px) {
  header {
    background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0));
    backdrop-filter: blur(2px);
  }
}