/* --- BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
  color: white;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at 20% 20%, #1a1a1a, #000);
  color: white;
}

/* --- NAVBAR --- */
.navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 100;
}

/* --- LOGO (RIPPLE) --- */
.logo {
  position: relative;
  padding: 8px 15px;
  border-radius: 8px;
  background: linear-gradient(45deg, orange, gold);
  color: black;
  font-weight: bold;
  overflow: hidden;
}

.logo::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo:active::after {
  width: 200px;
  height: 200px;
  transition: 0.4s;
}

/* --- NAV LINKS --- */
.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-buttons a {
  position: relative;
  padding: 6px 10px;
}

.nav-buttons a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  background: orange;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

.nav-buttons a:hover::after {
  width: 100%;
}

.phone {
  font-size: 14px;
}

/* --- BURGER --- */
#menu-toggle {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: white;
}

/* --- TITLE --- */
.central-title {
  text-align: center;
  margin: 20px 0;
}

.central-title h1 {
  text-transform: uppercase;
  font-size: 40px;
  background: linear-gradient(90deg, orange, gold, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- HERO --- */
.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.2), transparent);
  filter: blur(60px);
}

.hero-content {
  display: flex;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.hero-left {
  flex: 30%;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 10px;
}

.hero-right {
  flex: 70%;
}

.hero-right img {
  width: 100%;
 
}

/* --- EXTRA IMAGE --- */
.hero-extra {
  margin-top: 15px;
}

.hero-extra img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1px;
}

/* --- GALLERY --- */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px;
  justify-content: center;
}

.card {
  max-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.4s;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

/* --- INFO --- */
.info-block {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  text-align: center;
}

/* --- FOOTER --- */
.address,
.footer {
  text-align: center;
  padding: 10px;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .burger {
    display: flex;
    cursor: pointer;
  }

  .nav-buttons {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: black;
    padding: 20px;
    text-align: center;
  }

  #menu-toggle:checked ~ .nav-buttons {
    display: flex;
  }

  .hero-content {
    flex-direction: column;
  }

  .central-title h1 {
    font-size: 26px;
  }
}
