@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Oswald", sans-serif;
  background-color: #fff;
  color: #111;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.main-header {
  background-color: #fff;
  padding: 1.5rem 0;
  border-bottom: 1px solid #ccc;
}
.main-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header .logo a {
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.main-header .nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.main-header .nav-list li {
  position: relative;
}
.main-header .nav-list li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}
.main-header .nav-list li a:hover {
  color: #000;
}
.main-header .nav-list li:hover .dropdown-content {
  display: block;
}
.main-header .nav-list .dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 100;
  min-width: 220px;
  padding: 0.5rem 0;
}
.main-header .nav-list .dropdown-content li a {
  display: block;
  padding: 1rem;
  color: #111;
  white-space: nowrap;
}
.main-header .nav-list .dropdown-content li a:hover {
  background-color: #f5f5f5;
}

.hero-section {
  background: url("/assets/img/hero.png") center/cover no-repeat;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.hero-section .hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 6rem 0;
}
.hero-section .hero-overlay .container {
  text-align: left;
  max-width: 800px;
  padding: 0 2rem;
}
.hero-section .hero-overlay h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
}
.hero-section .hero-overlay p {
  color: #eee;
  font-size: 1.1rem;
  line-height: 1.6;
}

.features-section {
  background-color: #fff;
  padding: 4rem 0;
}
.features-section .features-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.features-section .feature-box {
  flex: 1 1 30%;
  background: #111;
  color: #fff;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
}
.features-section .feature-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.features-section .feature-box h3 span {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}
.features-section .feature-box p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
}

.info-section {
  padding: 5rem 0;
  background-color: #fff;
}
.info-section .info-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}
.info-section .info-block.reverse {
  flex-direction: row-reverse;
}
.info-section .info-block .info-image {
  flex: 1 1 50%;
}
.info-section .info-block .info-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
}
.info-section .info-block .info-text {
  flex: 1 1 50%;
}
.info-section .info-block .info-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
}
.info-section .info-block .info-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}
@media (max-width: 768px) {
  .info-section .info-block {
    flex-direction: column;
  }
  .info-section .info-block.reverse {
    flex-direction: column;
  }
  .info-section .info-block .info-text,
  .info-section .info-block .info-image {
    flex: 1 1 100%;
  }
}

.project-installation,
.player-experience {
  padding: 5rem 0;
  background-color: #fff;
}
.project-installation .section-title,
.player-experience .section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #111;
}
.project-installation .box-row,
.player-experience .box-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.project-installation .info-card,
.player-experience .info-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  flex: 1 1 300px;
  max-width: 370px;
  transition: all 0.3s ease;
}
.project-installation .info-card h3,
.player-experience .info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}
.project-installation .info-card p,
.player-experience .info-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}
.project-installation .info-card:hover,
.player-experience .info-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .project-installation .box-row,
  .player-experience .box-row {
    flex-direction: column;
    align-items: center;
  }
}
.icon-top {
  font-size: 2rem;
  color: #111;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-top {
  background-color: #111;
  color: #fff;
  padding: 4rem 0;
}
.footer-top .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-top .footer-grid .footer-box {
  flex: 1 1 300px;
}
.footer-top .footer-grid .footer-box h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.footer-top .footer-grid .footer-box h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #fff;
  margin-top: 0.5rem;
}
.footer-top .footer-grid .footer-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}
.footer-top .footer-grid .footer-box ul {
  list-style: none;
  padding: 0;
}
.footer-top .footer-grid .footer-box ul li {
  margin-bottom: 0.5rem;
}
.footer-top .footer-grid .footer-box ul li a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
}
.footer-top .footer-grid .footer-box ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  background-color: #000;
  color: #fff;
  padding: 1.5rem 0;
  position: relative;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}
.footer-bottom .footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.footer-bottom .footer-links a {
  color: #fff;
  text-decoration: none;
}
.footer-bottom .footer-links a:hover {
  text-decoration: underline;
}
.footer-bottom .footer-links span {
  color: #555;
}
.footer-bottom .copyright {
  font-size: 0.85rem;
  color: #999;
}
.footer-bottom .scroll-top {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  background: #fff;
  color: #000;
  padding: 0.7rem 0.9rem;
  border-radius: 50%;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
}
.footer-bottom .scroll-top:hover {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}

@media (max-width: 768px) {
  .footer-top .footer-grid {
    flex-direction: column;
  }
  .footer-bottom .scroll-top {
    position: static;
    margin-top: 1rem;
  }
}
.about-hero {
  background-color: #000;
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}
.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.about-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

.about-content {
  padding: 5rem 2rem;
  background-color: #fff;
  color: #111;
}
.about-content .about-row {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}
.about-content .about-text {
  flex: 1 1 50%;
}
.about-content .about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-content .about-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #444;
}
.about-content .about-image {
  flex: 1 1 40%;
}
.about-content .about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .about-content .about-row {
    flex-direction: column;
  }
}
.thank-you-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.thank-you-popup.hidden {
  display: none;
}
.thank-you-popup .popup-content {
  background: #fff;
  padding: 2rem 3rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.thank-you-popup .popup-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
}
.thank-you-popup .popup-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #555;
}
.thank-you-popup .popup-content button {
  padding: 0.7rem 1.5rem;
  border: none;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}
.thank-you-popup .popup-content button:hover {
  background-color: #222;
}

.contact-hero {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}
.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact-hero p {
  font-size: 1.1rem;
  color: #ccc;
}

.contact-form-section {
  background-color: #f7f7f7;
  padding: 5rem 2rem;
}
.contact-form-section .contact-form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form-section .contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.contact-form-section .contact-form input,
.contact-form-section .contact-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  border-radius: 6px;
  font-family: inherit;
  background-color: #fff;
  color: #000;
  width: 100%;
}
.contact-form-section .contact-form textarea {
  resize: vertical;
}
.contact-form-section .contact-form .submit-button {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  border-radius: 6px;
  align-self: center;
  transition: all 0.3s ease;
}
.contact-form-section .contact-form .submit-button:hover {
  background-color: #333;
}

.retro-hero {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}
.retro-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.retro-hero p {
  font-size: 1.1rem;
  color: #ccc;
}

.retro-section {
  background: #fff;
  padding: 4rem 2rem;
}
.retro-section .retro-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.retro-section .retro-row.reverse {
  flex-direction: row-reverse;
}
.retro-section .retro-row .retro-image {
  flex: 1 1 45%;
}
.retro-section .retro-row .retro-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.retro-section .retro-row .retro-text {
  flex: 1 1 50%;
}
.retro-section .retro-row .retro-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
}
.retro-section .retro-row .retro-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}
.retro-section .retro-info {
  max-width: 900px;
  margin: 0 auto;
}
.retro-section .retro-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.retro-section .retro-info ul {
  margin: 0 0 2rem 1.2rem;
}
.retro-section .retro-info ul li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #444;
}
.retro-section .retro-info ul li strong {
  color: #000;
}
.retro-section .retro-info blockquote {
  font-style: italic;
  padding-left: 1.2rem;
  border-left: 3px solid #000;
  color: #555;
}

@media (max-width: 768px) {
  .retro-section .retro-row {
    flex-direction: column;
  }
  .retro-section .retro-row.reverse {
    flex-direction: column;
  }
}
.vertical-card {
  margin-bottom: 4rem;
  text-align: center;
}
.vertical-card img {
  width: 500px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.vertical-card .text-content {
  max-width: 800px;
  margin: 0 auto;
}
.vertical-card .text-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
}
.vertical-card .text-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.premium-hero {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
}
.premium-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.premium-hero p {
  font-size: 1.1rem;
  color: #ccc;
}

.premium-cards {
  background-color: #f9f9f9;
  padding: 5rem 2rem;
}
.premium-cards .card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.premium-cards .premium-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  padding: 2rem;
  max-width: 300px;
  transition: all 0.3s ease;
}
.premium-cards .premium-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.premium-cards .premium-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.premium-cards .premium-card p {
  font-size: 0.95rem;
  color: #444;
}
.premium-cards .premium-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.premium-features {
  background-color: #fff;
  padding: 4rem 2rem;
}
.premium-features .features-grid {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.premium-features .features-grid .feature-item {
  flex: 1 1 250px;
  text-align: center;
}
.premium-features .features-grid .feature-item i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000;
}
.premium-features .features-grid .feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.premium-features .features-grid .feature-item p {
  font-size: 0.95rem;
  color: #444;
}

.premium-cta {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}
.premium-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.premium-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ccc;
}
.premium-cta .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #fff;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.premium-cta .cta-button:hover {
  background: #ddd;
}

@media (max-width: 768px) {
  .card-row,
  .features-grid {
    flex-direction: column;
    align-items: center;
  }
}
.salon-hero {
  background-color: #000;
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}
.salon-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.salon-hero p {
  font-size: 1.1rem;
  color: #ccc;
}

.salon-models {
  background-color: #f9f9f9;
  padding: 5rem 2rem;
}
.salon-models .salon-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.salon-models .salon-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 2rem;
  max-width: 320px;
  text-align: center;
  transition: all 0.3s ease;
}
.salon-models .salon-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.salon-models .salon-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #111;
}
.salon-models .salon-card p {
  font-size: 0.95rem;
  color: #444;
}
.salon-models .salon-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.salon-info {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}
.salon-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.salon-info ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.salon-info ul li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}
.salon-info ul li::before {
  content: "✔";
  margin-right: 0.5rem;
  color: #000;
}

@media (max-width: 768px) {
  .salon-models .salon-grid {
    flex-direction: column;
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */