
/* GLOBAL */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0a0a0a;
  color: white;
  overflow-x: hidden;
  padding-top: 100px; /* pushes content down */
}



/* HEADER */
header {
  position: fixed; /* keeps it at the top while scrolling */
  top: 0;
  left: 0;
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(0,0,0,0.6); /* subtle glass effect */
  backdrop-filter: blur(8px);
  z-index: 1000;
}


.logo img {
  height: 80px;
 }


/* NAV */
nav a {
  margin-left: 25px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

nav a:hover {
  color: #ccc;
}


.logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 3px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

nav a:hover {
  color: #00f7ff;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30') center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(black, rgba(0,0,0,0.4), black);
}

.hero-text {
  position: relative;
  text-align: center;
  animation: fadeIn 2s ease;
}

.hero h1 {
  font-size: 60px;
}

.glow {
  color: #fff;
  text-shadow: 0 0 10px #00f7ff,
               0 0 20px #00f7ff,
               0 0 40px #00f7ff;
}

/* BUTTON */
.btn {
  margin-top: 20px;
  padding: 12px 30px;
  background: linear-gradient(45deg, #00f7ff, #0077ff);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.1);
}

/* SERVICES */
.services {
  padding: 80px 40px;
  text-align: center;
}

.service-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.card {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 15px;
  width: 260px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  background: rgba(0,247,255,0.15);
}

/* TESTIMONIAL */
.testimonial {
  background: #111;
  padding: 80px;
  text-align: center;
}

/* CTA */
.cta {
  padding: 80px;
  text-align: center;
  background: linear-gradient(45deg, #000, #0a1a2f);
}

.glow-btn {
  box-shadow: 0 0 15px #00f7ff;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: black;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: 0.4s;
}

.gallery img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* CONTACT HERO */
.contact-hero {
  height: 40vh;
  background: linear-gradient(black, #111);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* MAIN CONTAINER */
.contact-container {
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

/* CONTACT CARD */
.contact-card {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  width: 300px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

/* SOCIAL SECTION */
.social-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* GRID */
.social-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* SOCIAL CARDS (THUMBNAILS) */
.social-card {
  position: relative;
  width: 200px;
  height: 100px;
  overflow: hidden;
  border-radius: 15px;
  text-decoration: none;
}

.social-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* DARK OVERLAY */
.social-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  transition: 0.4s;
}

/* TEXT OVERLAY */
.overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 20px;
  color: white;
  z-index: 2;
  letter-spacing: 2px;
}

/* HOVER EFFECT */
.social-card:hover img {
  transform: scale(1.1);
}

.social-card:hover::after {
  background: rgba(0,0,0,0.2);
}
/* BOOKING SECTION */
.booking-section {
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(black, #0e0e0e);
}

/* FORM */
.booking-form {
  max-width: 700px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* SIDE-BY-SIDE ROWS */
.form-row {
  display: flex;
  gap: 20px;
}

.form-row input {
  flex: 1;
}

/* INPUTS */
.booking-form input,
.booking-form textarea {
  padding: 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}

/* FOCUS EFFECT */
.booking-form input:focus,
.booking-form textarea:focus {
  border-color: white;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

/* BUTTON */
.booking-form button {
  padding: 15px;
  background: linear-gradient(45deg, #cfcfcf, #666);
  border: none;
  color: black;
  font-weight: bold;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.booking-form button:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #ffffff, #888);
}

/* FIX SUCCESS MESSAGE */
#success-message {
  display: none;
  margin-top: 20px;
  color: #00ffcc;
}

/* FIX SOCIAL CARDS */
.social-card {
  position: relative;
  width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
  text-decoration: none;
}

.social-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FIX FORM ROW ON SMALL SCREENS */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

.thankyou {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: black;
  color: white;
  text-align: center;
}

.thankyou h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

/* ABOUT SECTION */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 100px 60px;
  min-height: 80vh;
}

/* IMAGE */
.about-image img {
  width: 350px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* TEXT */
.about-text {
  max-width: 500px;
}

.about-text h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #ccc;
}

/* MOBILE FIX */
@media (max-width: 800px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 80%;
  }
}