/* ===== GLOBAL VARIABLES ===== */

:root {
  --bg-main: #0f0f0f;
  --bg-dark: #0b0b0b;
  --gold: #c9a14a;
  --gold-light: #e0b85a;
  --text: #ffffff;
}

/* ===== RESET ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--bg-main);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: 0.4s;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
}

/* LOGO */

.logo {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 26px;
  font-weight: 600;
}

.logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-top: 9px;
  margin-right: -15px;
}

.logo span {
  color: var(--gold);
}

/* MENU */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
}

nav ul li a:hover {
  color: var(--gold);
}

/* ===== HERO ===== */

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 100px;
  transition: background-image 0.8s ease-in-out;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* ===== BUTTONS ===== */

.btn {
  padding: 14px 32px;
  border-radius: 35px;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  transition: 0.3s;
}

.primary {
  background: var(--gold);
  color: #000;
  margin-right: 10px;
}

.primary:hover {
  background: var(--gold-light);
}

.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.secondary:hover {
  background: #fff;
  color: #000;
}

/* ===== SECTIONS ===== */

section {
  padding: 90px 80px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  opacity: 0.75;
  margin-bottom: 50px;
}

/* ===== SERVICES ===== */

.services {
  background: var(--bg-dark);
  padding-top: 60px;
  padding-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.6s;
}

.service-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.overlay h3 {
  font-size: 20px;
}

/* ===== PORTFOLIO ===== */

.portfolio {
  background: var(--bg-dark);
  padding-top: 60px;
  padding-bottom: 20px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.portfolio-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.5s;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

.portfolio-card span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gold);
  color: #000;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 20px;
  font-weight: 500;
}

/* ===== PORTFOLIO FILTER ===== */

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.portfolio-filter button {
  padding: 8px 18px;
  border: none;
  background: #1c1c1c;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.portfolio-filter button:hover {
  background: var(--gold);
  color: #000;
}

/* ===== CONTACT ===== */

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
}

.contact button {
  padding: 14px;
  background: var(--gold);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

/* ===== FLOAT BUTTONS ===== */

.float-btn {
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  z-index: 999;
}

.whatsapp {
  bottom: 90px;
  background: #25d366;
}

.call {
  bottom: 20px;
  background: #0a84ff;
}

/* ===== FOOTER ===== */

.footer {
  background: #111;
  text-align: center;
  padding: 40px 20px;
}

.footer h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer p {
  font-size: 14px;
  margin-bottom: 10px;
}

.insta {
  display: inline-block;
  color: white;
  font-size: 20px;
  margin-top: 10px;
  transition: 0.3s;
}

.insta:hover {
  color: var(--gold);
}

.copyright {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.7;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    display: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .hero {
    padding: 50px 25px;
  }

  .hero h1 {
    font-size: 34px;
  }

  section {
    padding: 60px 30px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
