@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: transparent;
  overflow-x: hidden;
}

/* ===== Navbar ===== */
.navbar {
  background-color: #1a1a1a;
  padding: 1rem 3rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  gap: 4rem;
  font-family: 'Montserrat', sans-serif;
}

.navbar .logo {
  display: flex;
  align-items: center;
  height: 84px;
  min-width: fit-content;
  margin-right: auto;
}

.navbar .logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
  max-width: 100%;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar li {
  margin: 0;
  padding: 0;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

.navbar a:hover {
  color: #ff2d2d;
}

/* ===== Language Switcher ===== */
.lang-switcher {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
  align-items: center;
}

.lang-btn {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  border-color: #ff2d2d;
  color: #ff2d2d;
}

.lang-btn.active {
  background-color: #ff2d2d;
  border-color: #ff2d2d;
  color: #ffffff;
}

@media (max-width: 768px) {
  .lang-switcher {
    margin-left: 1rem;
  }
  
  .lang-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }
}

/* ===== Navbar Social Links ===== */
.navbar .social-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: 1rem;
  margin-top: 0;
}

.navbar .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.navbar .social-links a:hover {
  background-color: #ff2d2d;
  border-color: #ff2d2d;
  color: #ffffff;
  transform: scale(1.1);
}

/* ===== Hero Section ===== */
.hero {
  background: transparent;
  color: white;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: visible;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero h1 {
  font-size: 1.8rem;
  margin: 0;
  padding: 2rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #1a1a1a;
  font-style: normal;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
  white-space: normal;
  width: 100%;
}

/* ===== Images Gallery ===== */
.images-gallery {
  display: flex;
  flex-direction: row;
  width: 100vw;
  max-width: none;
  gap: 0;
  align-items: stretch;
  height: 600px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.images-gallery img {
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Homepage Gallery Responsive ===== */
@media (max-width: 1024px) {
  .hero {
    padding: 0;
  }

  .images-gallery {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .images-gallery img {
    width: 100%;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .images-gallery img {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .images-gallery img {
    height: 220px;
  }
}

/* ===== CTA Button (if needed elsewhere) ===== */
.cta-btn {
  display: inline-block;
  background-color: #ff2d2d;
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background-color: #cc2323;
  transform: scale(1.05);
}

/* ===== Sections ===== */
section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== About Section ===== */
.about-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.about-text {
  flex: 1;
  padding-right: 2rem;
}

.about-image {
  flex: 0 0 400px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

section h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid #ff2d2d;
  display: inline-block;
  padding-bottom: 0.5rem;
}

section h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

/* ===== Grid Layout ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.grid > div,
.grid > a {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  text-decoration: none;
}

.grid > div:hover,
.grid > a:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.grid img {
  flex: 1;
  width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: white;
  padding: 1.5rem;
}

.caption {
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.event-card {
  min-height: auto;
}

.event-card img {
  width: 100%;
  height: 500px;
  flex: 0 0 500px;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

/* ===== Modal Styles ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-content {
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  width: 96%;
  max-width: 1280px;
  max-height: 94vh;
  overflow-y: auto;
  position: relative;
}

.modal-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover,
.close:focus {
  color: #ff2d2d;
}

#modalGallery h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-video {
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.modal-video video {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.modal-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.modal-photos img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.modal-photos img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .event-card img {
    height: 520px;
    flex-basis: 520px;
  }

  .modal-content {
    width: 95%;
    max-width: 560px;
    padding: 0.5rem;
  }
  
  .modal-photos {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
}

/* ===== Carousel ===== */
.carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 2.5rem;
  padding-left: 80px;
  padding-right: 80px;
}

.carousel-img {
  display: none;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.carousel-img.active {
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 4px;
  z-index: 10;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(255, 45, 45, 0.8);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots {
  position: absolute;
  bottom: 0;
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #ff2d2d;
}

/* ===== Carousel Video ===== */
.carousel-video {
  display: none;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  border-radius: 8px;
  margin: 0 auto;
}

.carousel-video.active {
  display: block;
}

/* ===== Phone Video Frame ===== */
.phone-video-frame {
  width: min(92vw, 520px);
  margin: 0 auto;
  border-radius: 44px;
  overflow: hidden;
  border: 8px solid #222;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  background: #000;
}

.phone-video-frame video {
  width: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .modal {
    padding: 0.75rem;
  }

  .modal-content {
    width: 100%;
    max-width: 980px;
  }

  .carousel {
    width: 100%;
    padding-left: 56px;
    padding-right: 56px;
  }

  .carousel-img {
    max-height: 74vh;
  }

  .carousel-video {
    max-height: 74vh;
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .phone-video-frame {
    width: min(90vw, 620px);
    border-radius: 40px;
  }
}

@media (max-width: 768px) {
  .modal {
    padding: 0.35rem;
  }

  .modal-content {
    max-height: 97vh;
  }

  .carousel {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 2rem;
  }

  .carousel-img {
    max-height: 80vh;
  }

  .carousel-video {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
  }

  .carousel-btn {
    padding: 0.5rem 0.7rem;
    font-size: 1.25rem;
    top: 45%;
  }

  .carousel-btn.prev {
    left: 2px;
  }

  .carousel-btn.next {
    right: 2px;
  }

  .phone-video-frame {
    width: min(96vw, 560px);
    border-width: 6px;
  }
}

@media (max-width: 480px) {
  .modal {
    padding: 0.2rem;
  }

  .modal-content {
    width: 100%;
    max-width: 100%;
    max-height: 98vh;
    padding: 0;
  }

  .carousel {
    padding-left: 8px;
    padding-right: 8px;
  }

  .carousel-img {
    max-height: 82vh;
  }

  .carousel-video {
    max-height: 82vh;
    width: auto;
    max-width: 100%;
  }

  .phone-video-frame {
    width: min(98vw, 520px);
    border-radius: 28px;
    border-width: 5px;
  }
}

/* ===== Video Section ===== */
.video-section {
  background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.video-section h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid #ff2d2d;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.video-container {
  max-width: 100%;
  background: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

.video-container iframe {
  display: block;
  margin: 0 auto;
}

/* ===== Form Styles ===== */
form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 2rem auto;
  width: 100%;
  overflow-x: clip;
}

.phone-fields {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.phone-fields select {
  flex: 0 0 150px;
  max-width: 150px;
}

.phone-fields input[type="tel"] {
  flex: 1 1 auto;
  min-width: 0;
}

.form-group {
  margin-bottom: 1.5rem;
  max-width: 100%;
  overflow-x: clip;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
  max-width: 100%;
  min-width: 0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
}

select option {
  white-space: normal;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #ff2d2d;
  box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group button {
  background-color: #ff2d2d;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group button:hover {
  background-color: #cc2323;
}

.logout-btn {
  background-color: #666;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  text-transform: uppercase;
}

.logout-btn:hover {
  background-color: #444;
}

/* ===== Footer ===== */
footer {
  background-color: #1a1a1a;
  color: white;
  padding: 2rem;
  margin-top: 0;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

footer h3 {
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer input[type="email"] {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  width: 100%;
  max-width: 300px;
  margin-bottom: 0.5rem;
}

footer button {
  background-color: #ff2d2d;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

footer button:hover {
  background-color: #cc2323;
}

footer p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #ccc;
}

footer [data-i18n="credit"] {
  font-weight: 700;
  margin-top: 1.9rem !important;
}

.collab-note {
  font-weight: 700;
}

footer a {
  color: #ff2d2d;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ff2d2d;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: white;
  font-size: 1.5rem;
}

.social-links a:hover {
  background-color: white;
  color: #ff2d2d;
  transform: scale(1.1);
}

/* ===== Hamburger Menu ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger:hover span {
  background: #ff2d2d;
}

.navbar.nav-open .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== Responsive Design ===== */

/* ===== iPad / Tablet (≤ 1024px) ===== */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 0.75rem 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
  }

  .navbar .logo {
    height: 60px;
    margin-right: 0;
  }

  .navbar .logo-img {
    height: 60px;
  }

  /* Hide nav & controls by default, show via dropdown */
  .navbar ul,
  .navbar .social-links,
  .navbar .lang-switcher {
    display: none;
    width: 100%;
    margin-left: 0;
  }

  .navbar.nav-open ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    border-top: 1px solid #2a2a2a;
    align-items: center;
  }

  .navbar.nav-open ul li {
    width: 100%;
    border-bottom: 1px solid #2a2a2a;
    text-align: center;
  }

  .navbar.nav-open ul li a {
    display: block;
    padding: 0.85rem 0.5rem;
    font-size: 1rem;
  }

  .navbar.nav-open .social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    padding: 1rem 0.5rem;
    border-top: 1px solid #2a2a2a;
    margin-top: 0;
  }

  .navbar.nav-open .lang-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 0.5rem 1rem;
    border-top: 1px solid #2a2a2a;
  }

  section {
    padding: 3rem 2rem;
  }

  section h1 {
    font-size: 2rem;
  }

  .about-content {
    flex-direction: column;
    gap: 2rem;
  }

  .about-image {
    flex: none;
    width: 100%;
  }

  .about-text {
    padding-right: 0;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Mobile Portrait (≤ 768px) ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 0.6rem 1rem;
  }

  .navbar .logo {
    height: 52px;
  }

  .navbar .logo-img {
    height: 52px;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: 1.3rem;
    padding: 1.5rem;
    white-space: normal;
  }

  .phone-frame {
    width: 280px;
    height: 560px;
    padding: 10px;
  }

  section {
    padding: 2.5rem 1.5rem;
  }

  section h1 {
    font-size: 1.6rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  form {
    max-width: 100%;
    padding: 1.5rem;
    width: 100%;
  }

  select {
    font-size: 16px;
    width: 100%;
    max-width: 100%;
  }

  .phone-fields {
    flex-wrap: wrap;
  }

  .phone-fields select {
    flex: 0 0 130px;
    max-width: 130px;
  }

  .phone-fields input[type="tel"] {
    flex: 1 1 180px;
  }

  .about-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-text {
    padding-right: 0;
  }

  .about-image {
    flex: none;
    width: 100%;
  }

  .modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .modal-photos {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .phone-video-frame {
    max-width: 90%;
  }

  .carousel-btn {
    padding: 0.5rem 0.75rem;
    font-size: 1.2rem;
  }

  .collab-note {
    font-size: 0.95rem;
  }
}

/* ===== Small Mobile (≤ 480px) ===== */
@media (max-width: 480px) {
  .event-card img {
    height: 480px;
    flex-basis: 480px;
  }

  .navbar .logo {
    height: 45px;
  }

  .navbar .logo-img {
    height: 45px;
  }

  .hero h1 {
    font-size: 1.05rem;
    padding: 1rem;
  }

  .phone-frame {
    width: 240px;
    height: 480px;
  }

  section {
    padding: 2rem 1rem;
  }

  section h1 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  form {
    padding: 1.25rem;
  }

  select {
    padding: 0.7rem;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
  }

  .phone-fields {
    flex-direction: column;
    align-items: stretch;
  }

  .phone-fields select,
  .phone-fields input[type="tel"] {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .phone-video-frame {
    max-width: 100%;
    border-radius: 24px;
  }

  .cookie-banner {
    bottom: 10px;
    right: 10px;
    width: calc(100% - 20px);
    max-width: none;
  }
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: scale(0.95);
  background-color: #1a1a1a;
  border: 2px solid #ff2d2d;
  border-radius: 8px;
  padding: 1.5rem;
  z-index: 1500;
  display: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 380px;
  width: 90%;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 1;
  transform: scale(1);
}

.cookie-content {
  color: #ffffff;
  line-height: 1.5;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-content a {
  color: #ff2d2d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cookie-content a:hover {
  color: #ff6666;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background-color: #ff2d2d;
  color: #ffffff;
  flex: 1;
  min-width: 120px;
}

.cookie-btn.accept:hover {
  background-color: #e60000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 45, 45, 0.3);
}

.cookie-btn.decline {
  background-color: #333333;
  color: #ffffff;
  border: 1px solid #555555;
  flex: 1;
  min-width: 120px;
}

.cookie-btn.decline:hover {
  background-color: #444444;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .cookie-banner {
    max-width: 90%;
    padding: 1.25rem;
  }

  .cookie-content p {
    font-size: 0.85rem;
  }

  .cookie-btn {
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    max-width: 95%;
    padding: 1rem;
    width: 95%;
  }

  .cookie-banner.show {
    gap: 0.75rem;
  }

  .cookie-content p {
    font-size: 0.8rem;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-btn {
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    width: 100%;
  }
}