/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================= CONTAINER ================= */

section {
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ================= HERO ================= */

.hero {
  background: url("hero.jpg") center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform-origin: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.overlay {
  background: rgba(30, 30, 30, 0.65);
  backdrop-filter: blur(8px);
  padding: 40px 60px;
  border-radius: 15px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: heroFade 1.2s ease forwards;
  opacity: 0;
}
.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 22px;
  margin-bottom: 15px;
}

.small-text {
  font-size: 16px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #e10600;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn:hover {
  background: #b80000;
}

.hero-nav {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-nav a {
  color: #fff;
  text-decoration: none;
}

.hero-nav a:hover {
  color: #e10600;
}

/* ================= BIG TITLES ================= */

.big-title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 40px;
}

/* ================= ACCORDION ================= */

.accordion {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

.accordion-header {
  font-size: 28px;
  cursor: pointer;
  padding: 10px 0;
}

.accordion-header:hover {
  color: #e10600;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.accordion-content p {
  font-size: 20px;
  color: #ccc;
  padding: 5px 0;
}

/* ================= WHY BLOCK ================= */

.why h3 {
  font-size: 28px;
  text-align: center;
  margin-top: 25px;
}

.why p {
  font-size: 18px;
  text-align: center;
  color: #ccc;
}

/* ================= CONTACTS ================= */

.phones a {
  display: block;
  font-size: 30px;
  margin: 10px 0;
  text-decoration: none;
  color: #fff;
  text-align: center;
}

.phones a:hover {
  color: #e10600;
}

.email {
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }

  .big-title {
    font-size: 34px;
  }

  .accordion-header {
    font-size: 22px;
  }

  .accordion-content p {
    font-size: 18px;
  }
}
#openGallery {
  display: block;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
/* ================= LIGHTBOX ================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ================= REVEAL ANIMATION ================= */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
button,
.nav-links a {
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.nav-links a:hover {
  opacity: 0.7;
}

html {
  scroll-behavior: smooth;
}
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.lock-scroll {
  overflow: hidden;
}
@media (max-width: 768px) {
  .overlay {
    padding: 30px 20px;
    width: 100%;
  }
}
.address {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #ccc;
  font-size: 18px;
  text-decoration: none;
}

.address:hover {
  color: #e10600;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}

.socials a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.socials a:hover {
  color: #e10600;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.socials a {
  color: white;
  font-size: 28px;
  text-decoration: none;
}

.socials a:hover {
  color: #e10600;
}
