/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: #333;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(117, 16, 16);
  color: white;
  padding: 20px 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.logo-img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  margin-right: 8px;
  object-fit: cover;
}

.logo-text {
  font-size: 1.5em;
  font-weight: bold;
  white-space: nowrap;
}

/* ===== NAVIGATION ===== */
nav {
  display: flex;
  gap: 15px;
  transition: right 0.4s ease;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

nav a:hover {
  text-decoration: underline;
  color: #0a4d94;
}

.hamburger {
  display: none;
  font-size: 1.3em;
  color: rgb(255, 255, 255);
  cursor: pointer;
  border: 1.5px solid rgb(255, 255, 255);
  border-radius: 5px;
  padding: 6px 10px;
  z-index: 9999;
}

/* ===== HERO ===== */
.hero {
  background:url('main3.jpg') center/cover no-repeat;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: white;
}
.hero p {
  font-size: 1.2em;
  color: white;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: rgb(117, 16, 16);
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  background: #c00d0d;
}

/* ===== SERVICES ===== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 50px 30px;
  text-align: center;
  background: white;
  flex: 1;
}

.service {
  background: #f2f7fc;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
}

.service h3 {
  color: #0a4d94;
  margin: 10px 0;
}

/* ===== CONTACT / ABOUT / SOCIALS ===== */
.contact-section {
  background: #f2f2f2;
  padding: 60px 20px;
}

.contact-flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-box {
  flex: 1;
  min-width: 250px;
}

.contact-box h3 {
  color: rgb(117, 16, 16);
  margin-bottom: 10px;
}

.contact-box a {
  color: rgb(117, 16, 16);
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

.social-links a {
  color: rgb(117, 16, 16);
  margin: 0 8px;
  font-size: 25px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #086314;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 15px 10px;
  background-color: #111;
  color: #fff;
  font-size: 0.9rem;
  width: 100%;
  flex-shrink: 0;
}

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed;
  right: 20px;
  bottom: 90px;
  background: #6d0707;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px;
  font-size: 18px;
  cursor: pointer;
  display: none;
  transition: 0.3s;
  z-index: 100;
}

#scrollTop:hover {
  background: #c00d0d;
}


/* ===== MOBILE ===== */
@media (max-width: 768px) {
  nav {
    flex-direction:column; 
    background:#111; 
    position:fixed; 
    top: 75px; 
    right:-100%; height:auto; 
    width:180px; 
    padding:70px 0; 
    transition:right 0.4s ease;
  }
  nav.active { right: 0; }
  nav a { display: block; padding: 15px 20px; }
  .hamburger { display: block; }

  .slide { min-width: 100%; }
  .slide img { height: 180px; }

  .price-table { width: 100%; }
  .booking-form { width: 95%; }

  /* Footer responsive adjustments */
  .contact-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-box {
    margin-bottom: 20px;
  }
  .footer-bottom {
    text-align: center;
  }
}

@media (max-height: 600px), (max-width: 600px) {
  footer {
    padding: 12px 8px;
    font-size: 0.8em;
  }

  #scrollTop {
    bottom: 100px;
  }
}
