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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 1);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  backdrop-filter: none;
}

header.transparent {
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
}

header nav ul li a,
.language-selector,
.contact-button {
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  font-weight: normal;
}

/* Logo styling in header */
.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo-img {
  height: 20px;
  display: block;
}

/* Contact Button in Header */
.contact-button {
  background-color: transparent;
  border: 1px solid #007bff;
  color: #fff;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-button:hover {
  background-color: #007bff;
  color: #000;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.4);
}

.hero-overlay h1 {
  font-size: 4rem;
  font-style: italic;
}

/* Full-Width Service Sections */
.service {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
}

.service-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 2rem;
}

.service.reverse .service-content {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1 1 50%;
  max-width: 500px;
  height: auto;
  display: block;
}

.service-text {
  position: static;
  top: auto;
  right: auto;
  transform: none;
  color: #333;
  text-align: left;
  max-width: 600px;
  z-index: 1;
  font-size: 1.2rem;
  line-height: 1.8;
  text-shadow: none;
  flex: 1 1 50%;
}

.service-text h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.service.black-bg {
  background-color: #000;
}

.service.black-bg .service-text {
  color: white;
}

.service.black-bg .service-text h3 {
  color: white;
}

.white-text h3 {
  color: white;
}

.white-text {
  color: white;
}

.service-text p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  text-shadow: none;
}

/* About Us Section */
.about {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #f8f8f8;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  text-align: justify;
}

/* Quote Section */
.quote-section {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #fff;
  color: #333;
}

.quote-section .quote {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  font-style: italic;
}

.contact-info {
  text-align: center;
  margin: 2rem auto;
  max-width: 800px;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1rem;
  color: #333;
}

.contact-info .contact-email {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}

.contact-info .contact-email:hover {
  text-decoration: underline;
}

/* Selector Section */
.selector-section {
  text-align: center;
  padding: 2rem 0;
  background-color: #ffffff;
  margin: 0 auto;
}

.selector-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.selector-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  margin: 0 auto 1.5rem auto;
  max-width: 800px;
  text-align: justify;
}

.selector-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.b2b-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 0 1rem;
}

.b2b-overlay h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.b2b-overlay p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: justify;
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .service.reverse .service-content {
    flex-direction: column !important;
  }

  .selector-section h2 {
    font-size: 1.8rem;
  }

  .selector-section p {
    font-size: 1rem;
  }
}

/* Footer */
footer {
  background-color: #f8f8f8;
  padding: 1.5rem 1rem;
  text-align: center;
  color: #333;
}

.footer-bottom p {
  margin: 0.5rem 0;
}

.footer-bottom .social-links a {
  color: #333;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-bottom .social-links a:hover {
  text-decoration: underline;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  position: relative;
  background: #fff;
  /*padding: 2rem;*/
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.popup-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
  margin-bottom: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.popup-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  font-family: "Arial", sans-serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.popup-content p,
.popup-content p.emoji-line {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  font-family: "Arial", sans-serif;
  text-align: center;
}

.popup-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #ff5722;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.popup-button:hover {
  background: #e64a19;
}

.popup-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
  font-family: Arial, sans-serif;
  text-align: center;
}

.popup-closing {
  font-size: 1rem;
  color: #444;
  margin: 1.5rem 0;
  line-height: 1.6;
  text-align: center;
}

.close-button {
  position: absolute;
  top: 0px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  transition: color 0.3s;
}

.close-button:hover {
  color: #ff0000;
}

.language-selector {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: inherit;
  line-height: 1.2;
  vertical-align: middle;
}

.language-selector:focus {
  outline: none;
}

.language-selector option {
  background-color: #000;
  color: #fff;
}

.event-contact-section {
  background-color: #000;
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.event-contact-section .quote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: #fff;
}

.event-contact-section .contact-info {
  max-width: 800px;
  margin: 0 auto;
}

.event-contact-section .contact-info p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1rem;
}

.event-contact-section .contact-email {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 2rem;
  font-size: 1.5rem;
  font-family: Arial, sans-serif;
  line-height: 1.4;
}

.event-contact-section .contact-email:hover {
  text-decoration: underline;
}

.instagram-link {
  text-decoration: none;
  color: #007bff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.instagram-link:hover {
  text-decoration: underline;
}

.instagram-icon {
  height: 18px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.boutique-section {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.boutique-content {
  max-width: 800px;
  margin: 0 auto;
}

.boutique-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
}

.boutique-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1rem;
  text-align: justify;
}

.boutique-image {
  width: 100%;
  height: auto;
  margin-top: 2rem;
}

.coming-soon-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.coming-soon {
  font-weight: bold;
  font-size: 1.1rem;
  color: #000;
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  .contact-button {
    display: inline-block;
    margin-left: auto;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  nav ul li.deleteli {
    display: none;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #000;
    color: #fff;
  }

  .hero-overlay h1 {
    padding: 0 30px;
    box-sizing: border-box;
    font-size: 2.5rem;
    font-style: italic;
  }

  .service {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
    background-color: transparent;
  }

  .service.black-bg {
    background-color: #000;
  }

  .service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .service-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-top: 1rem;
  }

  .service-text {
    position: static;
    padding: 1.5rem 1rem;
    max-width: 100%;
    text-align: center;
    color: #333;
    text-shadow: none;
  }

  .service.black-bg .service-text {
    color: white;
  }

  .service-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: inherit;
  }

  .service-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .selector-section {
    padding: 3rem 1rem;
  }

  .contact-email {
    font-size: 1.5rem;
  }

  .b2b-banner {
    height: auto;
    padding: 4rem 0;
    margin-bottom: 2rem;
  }

  .b2b-overlay h2 {
    font-size: 2rem;
  }

  .b2b-overlay p {
    font-size: 1rem;
    text-align: left;
  }
}
