@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

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

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

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%;
    scroll-behavior: smooth;
    font-family: "Oswald", sans-serif;
}

body {
    font-family: "Oswald", sans-serif;
    margin: 0;
    height: 100%;
    background: #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;
    color: #fff;
    font-weight: bold;
    position: relative;
    background: #1a1a1a;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 20px 40px;
}

.header .logo a {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
.header .nav ul {
    display: flex;
    gap: 20px;
}

.header .nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px;
    transition: color 0.3s ease;
}
    
.header .nav ul li a:hover {
    color: #f7a400;
}
    
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
    
.mobile-menu-icon .bar {
    width: 25px;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
}
    
    @media (max-width: 900px) {
      .header {
        padding: 15px;
      }

      .header .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: #1a1a1a;
        text-align: center;
        z-index: 999;
      }
    
      .header .nav.active {
        display: block;
      }
      .header .nav ul {
          flex-direction: column;
          gap: 20px;
          padding: 20px;
        }
      
        .mobile-menu-icon {
          display: flex;
        }
 }

/* accordeon */

/* hero */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    min-height: 50vh;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url(/assets/img/bg.jpg) center/cover no-repeat;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

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

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

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

@media (max-width: 480px) {
    .hero {
        padding: 60px 10px;
    }

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

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

/* swiper */

.swiper-block {
    padding: 100px 60px;
    display: flex;
    gap: 20px;
    background-color: #3b1a09e4;
}

.swiper-block h2 {
    color: white;
}

/* experience */

.experience {
    padding: 80px 20px;
    background-color: #3b1a09e4;
    text-align: center;
    color: #333;
}

.experience h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.experience p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #ffffff;
}

.experience ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience li {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience li:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.experience li img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.experience li h3 {
    font-size: 1.8rem;
    margin: 20px 15px 10px;
    color: #111;
}

.experience li p {
    font-size: 1.1rem;
    margin: 0 15px 20px;
    color: #666;
}

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

    .experience p {
        font-size: 1.2rem;
    }

    .experience li h3 {
        font-size: 1.5rem;
    }

    .experience li p {
        font-size: 1rem;
    }

    .swiper-block h2 {
        display: none;
    }
}

/* discover */

.discover {
    padding: 80px 20px;
    background-color: #3b1a09e4;
    text-align: center;
    color: #ffffff;
    margin: 0 auto;
}

.discover h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.discover p {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #ffffff;
}

.discover h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #c59d5f;
    margin: 15px auto 0;
    border-radius: 2px;
}

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

    .discover p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .discover {
        padding: 60px 15px;
    }

    .discover h2 {
        font-size: 1.8rem;
    }

    .discover p {
        font-size: 1rem;
    }
}

/* swiper */

.swiper-slide img {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background-color: #1b1f3b;
  padding: 2rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #d1b3ff;
  color: #1b1f3b;
}

.swiper-slide-second {
  max-width: 300px;
}


/* faq */

.faq {
  padding: 40px 20px;
  background-color: #3b1a09e4;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
  color: white;
}

.faq p {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
}

.accordion {
  background-color: #fff;
  color: #000000;
  cursor: pointer;
  padding: 18px 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.1rem;
  transition: background 0.3s ease;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.accordion:hover {
  background-color: #f0f0f0;
}

.accordion.active {
  background-color: #fabe89;
  font-weight: 600;
}

.panel {
  padding: 0 20px;
  background-color: #fdfdfd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  border-left: 3px solid #ccc;
  border-radius: 0 0 12px 12px;
  margin-bottom: 10px;
}

.panel p {
  margin: 15px 0;
  color: #444;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .faq h2 {
    font-size: 1.5rem;
  }

  .accordion {
    font-size: 1rem;
  }
}


/* footer */

footer {
  background-color: #1a1a1a;
  color: #eee;
  padding: 40px 20px;
}

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

footer a:hover {
  color: #ffcc33;
}

footer .footer-first,
footer .footer-second,
footer .footer-third {
  flex: 1 1 300px;
  margin-bottom: 30px;
}

footer .footer-first a {
  font-size: 28px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

footer .footer-first p {
  line-height: 1.6;
  max-width: 400px;
}

footer h4 {
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: 2px solid #f0a500;
  padding-bottom: 6px;
}

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

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  font-size: 16px;
  display: inline-block;
}

footer .footer-third form {
  display: flex;
  max-width: 320px;
  margin-top: 10px;
}

footer .footer-third input[type="email"] {
  flex-grow: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 15px;
}

footer .footer-third button {
  background-color: #f0a500;
  border: none;
  color: #1a1a1a;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

footer .footer-third button:hover {
  background-color: #ffcc33;
}

footer h5 {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #888;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


@media (max-width: 900px) {
  footer {
    flex-direction: column;
    align-items: center;
  }

  footer .footer-first,
  footer .footer-second,
  footer .footer-third {
    max-width: 90%;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  footer .footer-third form {
    flex-direction: column;
  }

  footer .footer-third input[type="email"] {
    border-radius: 4px 4px 0 0;
    margin-bottom: 8px;
  }

  footer .footer-third button {
    border-radius: 0 0 4px 4px;
    width: 100%;
  }
}

/* about */

.about {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.about h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.about > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.about-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h3 {
  font-size: 1.3rem;
  margin-top: 20px;
  color: #444;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.about-text ul li {
  margin: 10px 0;
  font-size: 1rem;
  line-height: 1.4;
  position: relative;
  padding-left: 30px;
}

.about-text ul li::before {
  content: '✔';
  color: #8a2be2;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
}

.about-image {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  object-fit: cover;
}

.about > p:last-of-type {
  margin-top: 40px;
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .about h2 {
    font-size: 1.6rem;
  }

  .about-text h3 {
    font-size: 1.2rem;
  }

  .about-text p,
  .about > p,
  .about-text ul li {
    font-size: 0.95rem;
  }
}

/* contact */

.contact {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background: #fafafa;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.contact h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact > p {
  text-align: center;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.contact-info, .contact-form {
  flex: 1;
  min-width: 280px;
}

.contact-info h3,
.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-info a {
  color: #4b4bff;
  text-decoration: none;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #444;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #8a2be2;
  outline: none;
}

.contact-btn {
  padding: 14px 20px;
  background: #8a2be2;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  width: fit-content;
  align-self: flex-start;
}

.contact-btn:hover {
  background: #6c1cc7;
}

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

  .contact h2 {
    font-size: 1.6rem;
  }

  .contact-info h3,
  .contact-form h3 {
    font-size: 1.2rem;
  }
}


/* privacy */

.privacy {
  max-width: 960px;
  margin: 60px auto;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.7;
}

.privacy h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.privacy h3 {
  font-size: 1.3rem;
  color: #4a4a4a;
  margin-top: 30px;
  margin-bottom: 10px;
}

.privacy p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.privacy ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy ul li {
  margin-bottom: 10px;
  list-style-type: disc;
  font-size: 1rem;
}

.privacy a {
  color: #8a2be2;
  text-decoration: none;
}

.privacy a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy {
    padding: 30px 15px;
  }

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

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

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


.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #4caf50;
  color: white;
  padding: 20px 30px;
  border-radius: 8px;
  font-size: 18px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-align: center;
}
