/* =======================
   GENERAL STYLES
======================= */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

body {
  background: #0f0f0f;
  color: #eee;
  line-height: 1.8;
  font-weight: 500;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #f0a500;
}

/* =======================
   NAVIGATION
======================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background: #000;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav h1 a {
  font-size: 1.8rem;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

nav ul a {
  font-weight: 700;
  font-size: 1.1rem;
}

/* =======================
   HERO SECTION
======================= */
.hero {
  height: 85vh;
  background: linear-gradient(to bottom, #111, #000);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  animation: fade 2s;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 2px 12px rgba(240,165,0,0.5);
}

.hero p {
  font-size: 1.5rem;
  font-weight: 600;
  max-width: 750px;
  line-height: 1.6;
  opacity: 0.95;
}

/* =======================
   HIGHLIGHT / ABOUT SECTION
======================= */
.highlight, .content {
  padding: 70px 20px;
  max-width: 1200px;
  margin: auto;
}

.highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.highlight img {
  width: 55%;
  border-radius: 14px;
  animation: float 4s infinite ease-in-out;
  box-shadow: 0 12px 35px rgba(240,165,0,0.25);
}

.highlight div {
  flex: 1;
}

.highlight h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.highlight p {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.7;
}

/* =======================
   GALLERY
======================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 50px 20px;
}

.gallery img {
  width: 100%;
  border-radius: 14px;
  transition: transform 0.4s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 25px rgba(240,165,0,0.4);
}

/* =======================
   CONTACT CARDS
======================= */
.cards {
  display: flex;
  gap: 35px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 90px;
  padding: 0 20px;
}

.card {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 50px 30px;
  width: 300px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.35s, background 0.35s, box-shadow 0.35s;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
}

.card:hover {
  transform: translateY(-12px);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 12px 25px rgba(240,165,0,0.35);
}

.card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.card p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 5px;
}

/* =======================
   FOOTER
======================= */
footer {
  text-align: center;
  padding: 25px;
  background: #000;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.85;
}

/* =======================
   ANIMATIONS
======================= */
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* =======================
   RESPONSIVE
======================= */
@media screen and (max-width: 900px) {
  .highlight {
    flex-direction: column;
  }
  .highlight img {
    width: 100%;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero p {
    font-size: 1.3rem;
  }
  .card {
    width: 90%;
    padding: 45px 25px;
  }
  .highlight h3 {
    font-size: 1.8rem;
  }
  .highlight p {
    font-size: 1.15rem;
  }
}


