@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h2 {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
}

h3 {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    color: #fff;
}

p {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

p {
  line-height: 150%;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
    list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  height: auto;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}
  
img {
    display: block;
    height: auto;
    padding: 0;
    margin: 0;
}
  
address {
    font-style: normal;
}
  
html {
    height: 100%;
    scroll-behavior: smooth;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #8B0000, #C72C41, #75031d);
  padding: 10px 20px;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo img {
  width: 70px;
  height: 70px;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  color: #000;
  cursor: pointer;
  display: none;
}

.nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #8f8e8e;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #8B0000, #C72C41, #75031d);
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .nav.open {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }
}

.header_link {
  color: white;
}


.hero {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url(/assets/img/bg.jpg) center center/cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: -1;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.hero a {
  display: inline-block;
  padding: 12px 36px;
  background: #C63446;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  width: 250px;
  margin: 0 auto;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.hero a:hover,
.hero a:focus {
  background: #d35400;
  box-shadow: 0 6px 14px rgba(211,84,0,0.7);
  outline: none;
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 15px;
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
    max-width: 90%;
  }

  .hero a {
    padding: 10px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 10px;
    min-height: 50vh;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero a {
    padding: 8px 24px;
    font-size: 0.9rem;
  }
}

.services {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #101010;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #C63446;
}

.services ul {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.services li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 350px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  cursor: default;
}

.services li:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.services li img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
  margin-bottom: 20px;
}

.services li h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #C63446;
  font-weight: 700;
}

.services li p {
  font-size: 1rem;
  line-height: 1.5;
  color: #414141;
}

@media (max-width: 900px) {
  .services ul {
    gap: 20px;
  }

  .services li {
    max-width: 45%;
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .services ul {
    flex-direction: column;
    gap: 25px;
  }

  .services li {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 25px 15px;
  }
}

.why {
  padding: 60px 20px;
  background-color: #fff;
  color: #222;
}

.why h2:first-of-type {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #C63446;
}

.why-text h3 {
  text-align: left;
}

.why_flex {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}


.why_flex img {
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

@media (max-width: 1130px) {
    .why_flex img {
        width: 300px;
    }
}


.why-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}

.why-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2b2b2b;
}

@media (max-width: 900px) {
  .why_flex {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }

  .why_flex img,
  .why-text {
    flex: none;
    width: 100%;
  }

  .why-text h2 {
    font-size: 1.6rem;
  }

  .why-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .why h2:first-of-type {
    font-size: 2rem;
  }

  .why-text h2 {
    font-size: 1.4rem;
  }

  .why-text p {
    font-size: 0.95rem;
  }
}

.mission {
  padding: 60px 20px;
  background-color: #fff;
  color: #141414;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.mission h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: #C63446;
}

.mission ul {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mission li {
  background: #cf122e25;
  border-radius: 15px;
  flex: 1 1 300px;
  max-width: 350px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.mission li:hover {
  transform: translateY(-8px);
}

.mission h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #C63446;
  font-weight: 700;
}

.mission p {
  font-size: 1rem;
  line-height: 1.5;
  color: #353535;
}

@media (max-width: 900px) {
  .mission ul {
    gap: 30px;
    justify-content: center;
  }

  .mission li {
    max-width: 45%;
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .mission ul {
    flex-direction: column;
    gap: 25px;
  }

  .mission li {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 25px 20px;
  }

  .mission h2 {
    font-size: 2rem;
  }

  .mission h3 {
    font-size: 1.2rem;
  }

  .mission p {
    font-size: 0.95rem;
  }
}

.cta {
  background: linear-gradient(135deg, #8B0000, #C72C41, #75031d);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 15px;
  max-width: 1300px;
  margin: 60px auto;
  box-shadow: 0 8px 30px rgba(214,84,0,0.4);
  transition: box-shadow 0.3s ease;
}

.cta:hover {
  box-shadow: 0 12px 40px rgba(214,84,0,0.6);
}

.cta h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
  color: #ffffff;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.cta .btn {
  display: inline-block;
  background-color: #fff;
  color: #000000;
  padding: 14px 42px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.7);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.cta .btn:hover,
.cta .btn:focus {
  background-color: #f1c40f;
  color: #922b00;
  box-shadow: 0 8px 25px rgba(241, 196, 15, 0.9);
  outline: none;
}


@media (max-width: 768px) {
  .cta h2 {
    font-size: 2rem;
  }

  .cta p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .cta .btn {
    padding: 12px 36px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta {
    padding: 40px 15px;
    margin: 40px 10px;
  }

  .cta h2 {
    font-size: 1.7rem;
  }

  .cta p {
    font-size: 0.9rem;
  }

  .cta .btn {
    padding: 10px 28px;
    font-size: 0.9rem;
  }
}

.reviews {
  padding: 60px 20px;
  background-color: #cf122e25;
  color: #202020;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: #C63446;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #C63446;
  margin: 12px auto 0;
  border-radius: 2px;
}

.reviews ul {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.reviews li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(198, 137, 50, 0.15);
  padding: 35px 25px 40px;
  flex: 1 1 320px;
  max-width: 350px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.reviews li:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(198, 137, 50, 0.3);
}

.reviews li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 6px;
  background: linear-gradient(135deg, #8B0000, #C72C41, #75031d);
  border-radius: 12px 12px 0 0;
}

.reviews li::after {
  content: "❝";
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 3.5rem;
  color: #f1c40f;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
  font-family: serif;
}

.reviews li img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(198,137,50,0.3);
}

.reviews li h3 {
  font-size: 1.3rem;
  color: #C63446;
  margin-bottom: 15px;
  font-weight: 700;
}

.reviews li p {
  font-size: 1rem;
  color: #2b2b2b;
  line-height: 1.5;
  font-style: italic;
  padding: 0 10px;
}

@media (max-width: 900px) {
  .reviews ul {
    gap: 25px;
  }

  .reviews li {
    max-width: 45%;
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .reviews ul {
    flex-direction: column;
    gap: 30px;
  }

  .reviews li {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 30px 20px 35px;
  }

  .reviews li::before {
    left: 20px;
    right: 20px;
  }

  .reviews li::after {
    font-size: 3rem;
    top: 10px;
    right: 15px;
  }

  .reviews li p {
    font-size: 0.95rem;
  }
}

.contact {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px 20px 60px;
  color: #1a1a1a;
  background-color: #cf122e25;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(230,126,34,0.15);
}

.contact h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: #C63446;
  font-weight: 700;
  position: relative;
}

.contact h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background-color: #C63446;
  margin: 12px auto 0;
  border-radius: 3px;
}

.contact ul {
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

.contact ul li {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(230,126,34,0.1);
  transition: box-shadow 0.3s ease;
  cursor: default;
}

.contact ul li:hover {
  box-shadow: 0 10px 28px rgba(230,126,34,0.25);
}

.contact ul li img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.contact ul li h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #C63446;
  font-weight: 700;
}

.contact ul li p {
  font-size: 1rem;
  color: #292929;
  line-height: 1.4;
}

.contact form {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 8px 30px rgba(230,126,34,0.15);
  position: relative;
}

.contact form::before,
.contact form::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: #C63446;
  border-radius: 2px;
  top: 15px;
  left: 20px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.contact form::after {
  top: auto;
  bottom: 15px;
  left: auto;
  right: 20px;
}

.contact form:hover::before,
.contact form:hover::after {
  opacity: 1;
}

.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
  width: 100%;
  padding: 12px 18px;
  margin-bottom: 20px;
  border: 2px solid #C63446;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: #333;
  resize: vertical;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact input[type="text"]:focus,
.contact input[type="email"]:focus,
.contact textarea:focus {
  outline: none;
  border-color: #C63446;
  box-shadow: 0 0 8px rgba(211,84,0,0.6);
}

.contact button {
  display: block;
  width: 100%;
  background-color: #C63446;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 14px 0;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact button:hover,
.contact button:focus {
  background-color: linear-gradient(135deg, #8B0000, #C72C41, #75031d);
  outline: none;
}

@media (max-width: 768px) {
  .contact ul {
    flex-direction: column;
    gap: 25px;
  }

  .contact ul li {
    max-width: 100%;
  }

  .contact form {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .contact h2 {
    font-size: 2rem;
  }

  .contact input[type="text"],
  .contact input[type="email"],
  .contact textarea {
    font-size: 0.95rem;
  }

  .contact button {
    font-size: 1rem;
  }
}

footer {
  background: linear-gradient(135deg, #8B0000, #C72C41, #75031d);
  color: #eee;
  padding: 30px 20px;
  text-align: center;
  margin: 0 auto;
  gap: 20px;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-flex {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

footer a:hover,
footer a:focus {
  color: #ffffff;
  outline: none;
}

footer .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  flex: 1 1 250px;
  justify-content: flex-start;
}

footer .logo img {
  height: 60px;
  width: auto;
  border-radius: 8px;
}

footer .header_link {
  color: #ffffff;
  font-weight: 700;
}

footer ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 875px) {
    footer ul {
        flex-direction: column;
        margin-top: 20px;
    }

    .footer-flex {
        flex-direction: column;
    }
}

footer ul li a {
  font-size: 1rem;
}

footer p {
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0 auto;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  footer .logo,
  footer ul,
  footer p {
    flex: none;
    text-align: center;
  }

  footer p {
    text-align: center;
    font-size: 0.85rem;
  }

  footer ul {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  footer .logo {
    font-size: 1.1rem;
  }

  footer ul li a {
    font-size: 0.9rem;
  }

  footer p {
    font-size: 0.8rem;
  }
}


.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  width: 500px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8B0000, #C72C41, #75031d);
  color: #fff;
  padding: 15px 20px;
  border-radius: 30px;
  font-size: 1rem;
  text-align: center;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.cookie-consent p {
  margin: 0;
}

.cookie-consent a {
  color: #efefef;
  text-decoration: underline;
}

.cookie-consent button {
  background-color: #fff;
  color: #000000;
  border: none;
  padding: 8px 24px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cookie-consent button:hover,
.cookie-consent button:focus {
  background-color: #f10fbc;
  color: #922b00;
  outline: none;
}

@media (max-width: 500px) {
  .cookie-consent {
    width: 250px;
  }

  .cookie-consent p {
    font-size: 12px;
  }
}


.privacy {
  max-width: 1100px;
  margin: 50px auto 80px;
  padding: 20px 20px;
  color: #000000;
  line-height: 1.6;
  background-color: #cf122e25;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(230,126,34,0.15);
  word-break: break-word;
}

.privacy h2 {
  font-size: 2.8rem;
  color: #C63446;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.privacy h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 3px;
}

.privacy h3 {
  font-size: 1.6rem;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #C63446;
  font-weight: 600;
}

.privacy p {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #000000;
}

.privacy ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style-type: disc;
  color: #555;
  font-size: 1rem;
  padding-left: 18px;
}

.privacy ul li {
  margin-bottom: 10px;
}

.privacy a {
  color: #C63446;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy a:hover,
.privacy a:focus {
  color: #e622bc;
  outline: none;
}

@media (max-width: 768px) {
  .privacy {
    margin: 40px 15px 60px;
    padding: 0 15px;
  }

  .privacy h2 {
    font-size: 2.3rem;
  }

  .privacy h3 {
    font-size: 1.4rem;
  }

  .privacy p,
  .privacy ul {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .privacy {
    margin: 30px 10px 50px;
    padding: 0 12px;
  }

  .privacy h2 {
    font-size: 2rem;
  }

  .privacy h3 {
    font-size: 1.2rem;
  }

  .privacy p,
  .privacy ul {
    font-size: 0.9rem;
  }
}


.age-verification-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
}

.age-verification-modal {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.age-verification-modal p {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #333;
}

.age-buttons button {
  background-color: #d35400;
  border: none;
  color: white;
  padding: 10px 25px;
  font-size: 1.1rem;
  margin: 0 12px;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.age-buttons button:hover,
.age-buttons button:focus {
  background-color: #e67e22;
  outline: none;
}
