/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
  width: 100%;
  background: rgba(20, 0, 20, 0.85);
  backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: gold;
  font-weight: 600;
}

.logo img {
  width: 40px;
}

/* Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-menu li a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

/* Active + Hover */
.nav-menu li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: gold;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

.nav-menu li a.active {
  color: gold;
}

/* Button */
.login-btn {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: black;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s
}

.login-btn:hover {
    transform: scale(1.05);
}

.contact-btn {
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: black;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: scale(1.05);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: gold;
  margin: 4px 0;
  transition: 0.3s;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .nav-menu {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    background: rgba(10, 0, 10, 0.95);
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    transition: 0.4s;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .contact-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

.hero {
  width: 100%;
  overflow: hidden;
}

/* Image Styling */
.hero img {
  width: 100%;
  height: 300px; /* Desktop default */
  object-fit: cover;
  display: block;
}

/* Large Desktop */
@media (min-width: 1400px) {
  .hero img {
    height: 340px;
  }
}

/* Laptop */
@media (max-width: 1200px) {
  .hero img {
    height: 280px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .hero img {
    height: 240px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero img {
    height: auto;
    aspect-ratio: 16 / 9; /* Keeps rectangle */
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero img {
    aspect-ratio: 4 / 3;
  }
}


/* Section */
.welcome-section {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

/* Container */
.container {
  max-width: 900px;
  margin: auto;
}

/* Heading */
.welcome-section h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}

/* Highlight */
.welcome-section h1 span {
  color: #FFD700;
}

/* Divider */
.divider {
  width: 120px;
  height: 4px;
  margin: 20px auto 30px;
  background: linear-gradient(90deg, #D4AF37, #FFD700);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Paragraph */
.welcome-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .welcome-section h1 {
    font-size: 34px;
  }

  .container {
    max-width: 700px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .welcome-section {
    padding: 60px 15px;
  }

  .welcome-section h1 {
    font-size: 26px;
    line-height: 1.4;
  }

  .divider {
    width: 80px;
    height: 3px;
  }

  .welcome-section p {
    font-size: 14px;
    line-height: 1.7;
  }

  .container {
    max-width: 100%;
  }
}

.container {
  background: rgba(255,255,255,0.03);
  padding: 40px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

/* Base */
.about-section {
  background-color: #000 !important;
  padding: 60px 20px;
  color: #ccc;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* Title */
.title {
  font-size: 36px;
  font-weight: 700;
  color: #ffcc00;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.highlight {
  width: 5px;
  height: 40px;
  background: #ffcc00;
  margin-right: 12px;
}

/* Text */
.description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* List */
.features {
  padding-left: 20px;
  margin-bottom: 20px;
}

.features li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Summary */
.summary {
  font-size: 15px;
  color: #aaa;
}

/* 🔥 Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 15px;
  }

  .title {
    font-size: 24px;
  }

  .highlight {
    height: 28px;
  }

  .description,
  .features li,
  .summary {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 20px;
  }

  .description,
  .features li,
  .summary {
    font-size: 13px;
  }
}


