/* GLOBAL */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  color: white;
  padding-top: 60px; /* prevents navbar overlap */
}
html {
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;  /* center nav */

  padding: 0 20px;
  box-sizing: border-box;

  z-index: 1000;
}

/* Scroll effect */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(45deg, gold, white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  left: 20px;
}

/* also style plain headings inside navbar (used on about.html) */
.navbar h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(45deg, gold, white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
  
/* NAV LINKS */
.navbar nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto;   /* 🔥 centers nav */
  display: flex;
  gap: 30px;

}

.navbar nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  position: relative;
  transition: 0.3s;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Hover */
.navbar nav a:hover {
  color: white;
}

/* Active */
.navbar nav a.active {
  color: white;
}

/* Underline animation */
.navbar nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: gold;
  bottom: -6px;
  left: 0;
  transition: 0.3s;
}

.navbar nav a:hover::after,
.navbar nav a.active::after {
  width: 100%;
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 50vh; /* full viewport hero */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* EACH SLIDE */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

/* ACTIVE SLIDE */
.slide.active {
  opacity: 1;
}

/* IMAGE */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;  /* ✅ ensures proper framing */
}

/* OVERLAY CONTENT */
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(0,0,0,0.6);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

.hero-overlay h2 {
  font-size: 2.5rem;
  margin: 0 0 8px 0;
}

/* BUTTONS */
.btn {
  padding: 12px 25px;
  margin: 10px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

/* Button container used in both pages */
.buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

/* Primary */
.primary {
  background: linear-gradient(45deg, gold, orange);
  color: black;
}

/* Secondary */
.secondary {
  border: 1px solid gold;
  color: gold;
}

/* Button hover */
.btn:hover {
  transform: scale(1.05);
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 40px;
  background: #111;
  text-align: center;
  
}

.stats h3 {
  color: gold;
  font-size: 1.8rem;
}

/* FOOTER - PREMIUM */

footer {
  background: linear-gradient(to top, #000, #111);
  padding: 40px 20px;
  text-align: center;
  color: #ccc;
}

/* Phone */
footer p {
  margin: 10px 0;
  font-size: 16px;
}

/* Social links */
footer a {
  color: gold;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  transition: 0.3s;
}

/* Hover effect */
footer a:hover {
  color: white;
  text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

/* Divider line */
footer::before {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.1);
}

/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 15px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* OWNER PAGE */
.owner-premium {
  display: flex;
  min-height: 100vh;
  background: radial-gradient(circle at top left, #111, #000);
}

/* LEFT IMAGE */
.owner-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
  transition: 0.3s;
}

.image-wrapper img:hover {
  transform: scale(1.05);
}

/* RIGHT CONTENT */
.owner-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.owner-right h2 {
  font-size: 2.5rem;
}

.tagline {
  color: gold;
  margin-bottom: 15px;
}

.description {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* HIGHLIGHTS */
.highlights {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.highlights div {
  background: rgba(255,255,255,0.05);
  padding: 10px 15px;
  border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .owner-premium {
    flex-direction: column;
    text-align: center;
  }

  .owner-right {
    padding: 30px;
  }

  .highlights {
    flex-direction: column;
    align-items: center;
  }
}

/* CONTACT SECTION */

.contact-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #111, #0a0a0a);
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: gold;
}

.contact-section p {
  color: #ccc;
  margin-bottom: 25px;
}

/* Buttons */
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* LOGO WITH IMAGE */

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* Logo image */
.logo img {
  height: 45px;   /* 🔥 increase size */
  width: auto;    /* maintain aspect ratio */
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255,215,0,0.4));
}

/* Logo text */
.logo span {
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(45deg, gold, white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CONTACT SECTION WITH LOGO */

.contact-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #111, #0a0a0a);
}

/* Layout */
.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Logo */
.contact-logo img {
  width: 150px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255,215,0,0.3);
}

/* Content */
.contact-content {
  text-align: center;
  max-width: 400px;
}

.contact-content h2 {
  color: gold;
  margin-bottom: 10px;
}

.contact-content p {
  color: #ccc;
  margin-bottom: 20px;
}

/* HAMBURGER HIDDEN IN DESKTOP */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  border: 0;
  padding: 0;
  background: transparent;
  color: white;
  line-height: 1;
  z-index: 1001;
}

/* MOBILE */
@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

  .navbar nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #111;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border-radius: 0 0 0 12px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .navbar nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

}