body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background: #111;
    color: #fff;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header {
    background: #000;
    padding: 15px 40px;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

nav a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
    font-weight: 600;
}

.hero{
  text-align: center;
  padding: 80px 20px;
  background: url("assets/images/background.webp") center/cover no-repeat;
  position: relative;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.55);
}

.hero > *{
  position: relative;
  z-index: 1;
}
.hero h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn {
    background: #25d366;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

.section h3 {
    font-size: 30px;
    margin-bottom: 30px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: #1c1c1c;
    padding: 25px;
    border-radius: 8px;
    font-size: 18px;
    height: 500px;
}

.card span {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-top: 8px;
}

.dark {
    background: #000;
}

footer {
    background: #000;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25d366;
    color: #000;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}
.hero-img{
  width: min(520px, 92%);
  height: auto;
  margin: 25px auto 10px;
  display: block;
  border-radius: 12px;
}
.gallery{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}

.gallery img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  background: #1c1c1c;
}
.card img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  filter: grayscale(20%);
}

.card h4{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}

.card p{
  margin: 0;
  font-size: 14px;
  color: #bbb;
}
/* ===== NAVBAR ===== */
.navbar{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container{
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo{
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}

/* Links */
.nav-links{
  display: flex;
  gap: 26px;
}

.nav-links a{
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
}

/* Hover underline */
.nav-links a::after{
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}

.nav-links a:hover{
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after{
  width: 100%;
}

/* Active */
.nav-links a.active{
  color: #fff;
}

/* Space for fixed navbar */
body{
  padding-top: 70px;
}
