/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* BODY BACKGROUND */
body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: skyblue;
  min-height: 100vh;
}

/* ─── HEADER ─── */
header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 70px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: hidden;
}

/* ─── LOGO ─── */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: auto;
  padding: 0;
  height: 100%;
}

/* Logo image — fills full bar height, flush to left edge */
.logo img {
  height: 70px;
  width: 70px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  background-color: #f59e0b;
  border-right: 2.5px solid #ffd700;
  box-shadow: 4px 0 16px rgba(245, 158, 11, 0.45);
  display: block;
  flex-shrink: 0;
}

/* Brand name text */
.logo span {
  font-size: 21px;
  font-weight: 700;
  color: #ffd700;
  white-space: nowrap;
  letter-spacing: 0.5px;
  line-height: 1.2;
  padding-right: 20px;
}

/* ─── NAVIGATION ─── */
nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  padding-right: 28px;
}

nav ul li a {
  text-decoration: none;
  color: #c06109;
  font-size: 14px;
  padding: 7px 12px;
  border-radius: 6px;
  transition: 0.3s;
  white-space: nowrap;
}

nav ul li a:hover {
  background: #ffd700;
  color: #000;
}

/* ─── HERO ─── */
.hero {
  height: 420px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  color: #cbd5f5;
}

/* ─── SECTION ─── */
.section {
  padding: 70px 10%;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ffd700;
}

/* ─── GLASS SECTION ─── */
.gray {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 50px;
  margin: 40px 0;
}

/* ─── PARAGRAPH TEXT ─── */
p {
  color: #cbd5f5;
  font-size: 16px;
  line-height: 1.7;
}

/* ─── CARDS ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.card h3 {
  margin-bottom: 10px;
  color: #00e5ff;
}

/* ─── GALLERY ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
  transition: 0.3s;
  display: block;
}

.gallery img:first-child {
  object-position: center 60%;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* ─── CONTACT BOX ─── */
.contact-box {
  max-width: 520px;
  margin: auto;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
  line-height: 1.8;
}

.contact-box h3 {
  color: #ffd700;
  margin-bottom: 12px;
  font-size: 20px;
}

.tagline {
  margin-top: 14px;
  font-weight: 600;
  color: #ffd700;
}

/* ─── FOOTER ─── */
footer {
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  color: #ffffff;
}

/* ─── MOBILE RESPONSIVE ─── */
@media (max-width: 768px) {
  header {
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    overflow: visible;
  }

  .logo {
    width: 100%;
    height: 60px;
    justify-content: flex-start;
    padding: 0;
    margin-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .logo img {
    height: 60px;
    width: 60px;
  }

  .logo span {
    font-size: 18px;
  }

  nav {
    width: 100%;
    padding: 8px 0;
  }

  nav ul {
    justify-content: center;
    padding: 6px 10px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .section {
    padding: 50px 20px;
  }

  .gray {
    padding: 30px 20px;
  }
}
