/* 
   style.css - Grupo 2R Unified Stylesheet
   Supports Dark Theme (Default) and Light Theme (Rubio)
*/

/* Designer Font for Prime Logo */
@font-face {
  font-family: 'Designer';
  src: url('../assets/Designer.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Colors */
  --bg-color: #0b0f1a;
  --text-color: #fff;
  --nav-bg: rgba(0, 0, 0, 0.75);
  --nav-text: #fff;

  --accent-prime: #30b9c7;
  /* Updated Prime Blue */
  --accent-prime-dark: #2599a5;
  --accent-rubio: #5b1d24;
  /* Updated Dark Red */
  --accent-highlight: #dc2626;
  /* Bright Red for text */

  --card-bg: rgba(255, 255, 255, 0.05);
  /* Glass effect default */
  --card-border: rgba(255, 255, 255, 0.1);
}

/* Light Theme Override (For Rubio) */
body.theme-light {
  --bg-color: #fff;
  --text-color: #111;
  --nav-bg: rgba(0, 0, 0, 0.7);
  /* Keep nav dark for contrast with white logo text? Or adjust? Original Rubio had dark nav */

  --card-bg: #fff;
  --card-border: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--nav-bg);
  backdrop-filter: blur(8px);
  z-index: 100;
  transition: padding 0.3s ease;
}

nav .logo {
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 1.2rem;
  color: #fff;
  /* Always white in nav */
  text-decoration: none;
}

nav .prime-nav-logo {
  font-family: 'Designer', sans-serif;
  font-weight: normal;
  letter-spacing: 1px;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
}

nav .logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

nav .logo-img {
  height: 50px;
  width: auto;
}

nav .nav-links {
  display: flex;
  gap: 60px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 1;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.9s ease forwards;
}

.slide-left {
  opacity: 0;
  animation: slideFromLeft 0.5s ease forwards;
}

.slide-right {
  opacity: 0;
  animation: slideFromRight 0.5s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* --- Common Layout --- */
section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
}

/* Theme specific H2 colors if needed, but usually inherit or specific classes */
/* In Rubio (Light), H2 is #dc2626. In Dark, H2 is White. */
body.theme-light section h2 {
  color: var(--accent-highlight);
}

section h3 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--accent-highlight);
  /* Default red highlight */
}

/* Prime override for blue H2/H3 */
body.page-prime h2,
body.page-prime h3,
body.page-prime h4 {
  color: var(--accent-prime);
}

section p {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 15px;
  text-align: justify;
}

/* Keep contact and footer sections centered */
.cta p,
footer p {
  text-align: center;
}

header p,
.hero p {
  font-size: 1.8rem;
  /* Increased size */
  opacity: 0.95;
  margin-top: 20px;
}

/* --- Header / Hero --- */
header,
.hero {
  min-height: 100vh;
  /* Default to full height, adjust per page if needed */
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url("../assets/fondo_grupo2r.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
  /* Changed from fixed for mobile compatibility */
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  color: #fff;
  /* Headers always white text usually */
  overflow: hidden;
  /* Prevent any overflow */
}

/* Hero Overlay */
header::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Default Dark Overlay - REMOVED per user request to fix haze */
  background: transparent;
  z-index: 0;
  opacity: 0;
}

/* Specific Page Header Backgrounds handled in HTML style tag or specific classes if preferred, 
   but for now we keep the structure generic */

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

/* Specific Header for Rubio Page */
/* Specific Header for Rubio Page */
/* Specific Header for Rubio Page */
/* Specific Header for Rubio Page */
/* Body specific for Rubio page */
.page-rubio {
  /* Using the optimized version of the requested background */
  background: url("../assets/membrete_rubio_optimized.jpg") no-repeat center center fixed;
  background-size: cover;
  /* Ensure text remains readable with an overlay if needed, but since it's a letterhead, start with just the image */
}

.page-rubio header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/rubio1_blurred.jpg");
  /* Ensure it overrides the default header styles if needed, though header selector is quite specific already */
  margin-top: 0;
  /* Reset margin from previous design */
  height: 100vh;
  /* Restore full height */
  background-attachment: scroll;
  /* Match default */
}

/* Specific Header for Prime Page */
.page-prime .hero,
.page-prime header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url("../assets/prime_fondo_optimized.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
}

header p,
.hero p {
  font-size: 1.45rem;
  /* Reduced size (~20%) */
  opacity: 0.95;
  margin-top: 20px;
}

/* --- Components --- */

/* Split (Text + Img) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.split img {
  width: 100%;
  border-radius: 22px;
  transition: transform 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.split img:hover {
  transform: scale(1.03);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 50px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.btn-prime {
  background: var(--accent-prime);
  color: #fff;
}

.btn-rubio {
  background: var(--accent-rubio);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--accent-highlight);
}

.btn-back {
  display: inline-block;
  background: var(--accent-prime);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 40px;
}

.btn-back:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
  background: var(--accent-prime-dark);
}

/* CTA Section */
.cta {
  background: transparent;
  text-align: center;
  padding: 120px 40px;
}

.cta-box {
  background: var(--accent-rubio);
  /* Rubio Red */
  color: #fff;
  padding: 50px 30px;
  border-radius: 24px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(91, 29, 36, 0.3);
}

.cta-box h2 {
  color: #fff !important;
  /* Force white text on red background */
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-box .btn {
  background: #fff !important;
  color: #5b1d24 !important;
  /* Rubio red for text */
}

.cta-box .btn:hover {
  background: #f0f0f0 !important;
  color: #5b1d24 !important;
}

.cta-box .btn-white {
  background: #fff !important;
  color: #5b1d24 !important;
  /* Specific override for btn-white in cta-box */
}

.cta-box .btn-white:hover {
  background: #f0f0f0 !important;
  color: #5b1d24 !important;
}

/* Larger CTA Box */
.cta-box-large {
  /* Removed specific background to let body background show through, or use slight transparency */
  background-color: rgba(255, 255, 255, 0.85);
  /* Semi-transparent white to make text readable over the background image */
  color: #fff;
  padding: 80px 40px;
  /* Increased padding for larger box */
  border-radius: 12px;
  /* Optional: adds rounded corners to content blocks */
  margin: 40px 20px;
  /* Optional: adds spacing around content blocks */
  max-width: 1100px;
  /* Wider box */
  box-shadow: 0 15px 40px rgba(91, 29, 36, 0.3);
}

.cta-box-large h2 {
  color: #fff !important;
  font-size: 3rem;
  /* Larger heading */
  margin-bottom: 25px;
}

.cta-box-large p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.4rem;
  /* Larger text */
  margin-bottom: 40px;
}

/* White Button for CTA */
.btn-cta-white {
  display: inline-block;
  padding: 20px 60px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  border: 3px solid #fff !important;
  background: #fff !important;
  color: #5b1d24 !important;
}

.btn-cta-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  background: #fff !important;
  border: 3px solid #f0f0f0 !important;
  color: #5b1d24 !important;
}

.cta h2 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--text-color);
}

.btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.btn-container .btn {
  width: 100%;
  display: block;
  text-align: center;
}

.cta-btn {
  display: block;
  width: 100%;
  padding: 22px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

/* Division Cards (Hub) */
.hub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.division-link {
  text-decoration: none;
  color: inherit;
}

.division-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 70px 40px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.division-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.division-card:hover::before {
  opacity: 1;
}

.division-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.division-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  margin-top: 0;
  color: var(--text-color);
}

.division-card span {
  font-size: 1.1rem;
  opacity: 0.85;
  letter-spacing: 1px;
}

.division-card.prime:hover {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
}

.division-card.rubio:hover {
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
}

/* Grid for Services (Prime) */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: var(--card-bg);
  border: 1px solid rgba(37, 99, 235, 0.3);
  /* Default blueish for Prime */
  border-radius: 16px;
  padding: 40px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--accent-prime);
}

/* --- Features / Lists --- */
.valores-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.valores-list li {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 30px;
  position: relative;
}

.valores-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--accent-highlight);
  font-size: 0.9rem;
}

.valores-list li strong {
  color: #dc2626;
  font-weight: 800;
  font-size: 1.2em;
}

body.theme-light .valores-list li::before {
  color: var(--accent-rubio);
}

body.theme-light .valores-list strong {
  color: var(--accent-rubio);
}

.lider-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626, #7f1d1d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-left: 10px;
}

/* LIDER Highlights */
.highlight-letter {
  color: #dc2626 !important;
  font-weight: 800;
  font-size: 1.3rem;
}

/* LIDER Highlight Letters */
.highlight-letter {
  color: #dc2626 !important;
  font-weight: 800;
  font-size: 1.3rem;
}

/* --- Carousel (Native Scroll) --- */
.colaboradores-section {
  padding: 100px 40px;
  text-align: center;
  background: transparent;
}

.colaboradores-section h2 {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  margin-bottom: 60px;
  font-weight: 800;
  color: var(--text-color);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.carousel-container {
  flex: 0 1 auto;
  max-width: 1000px;
  /* 3 items: 280px * 3 + 40px gap * 2 = 920px + padding */
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  position: relative;
  padding: 0 40px;
  /* Symmetric padding on both sides */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-container::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.carousel-track {
  display: flex;
  gap: 40px;
  padding: 10px 0;
  justify-content: flex-start;
}

.carousel-item {
  flex: 0 0 auto;
  width: 280px;
  height: 180px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transition: all 0.3s ease;
}

.carousel-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.carousel-item:hover img {
  opacity: 1;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 10;
  padding: 0;
  margin: 0;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.95);
}

/* --- Footer --- */
footer {
  background: #000;
  text-align: center;
  padding: 60px 40px;
  font-size: 0.95rem;
  opacity: 0.8;
  color: #fff;
}

/* --- Responsive --- */
@media(max-width: 900px) {
  nav {
    padding: 20px 20px;
    min-height: 80px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px !important;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    text-align: center;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Mobile layout: ensure text-image-text-image pattern */
  /* Default: text first, then image/gallery */
  .split>div:not(.gallery-container) {
    order: 1;
  }

  .split>img,
  .split>.gallery-container {
    order: 2;
  }

  .hub {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 20px;
  }

  section h2 {
    font-size: 2.2rem;
  }

  .cta h2 {
    font-size: 2.5rem;
  }

  .carousel-wrapper {
    gap: 10px;
  }

  .carousel-container {
    max-width: 480px;
    /* 2 items: 220px * 2 + 40px gap = 480px */
    padding: 0 20px;
    /* Symmetric padding for mobile */
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .carousel-item {
    width: 220px;
    height: 140px;
    padding: 20px;
  }

  header h1 {
    font-size: 2.5rem;
  }

  /* Fix background cutoff and centering on mobile */
  header,
  .hero {
    background-attachment: scroll;
    background-position: 50% center;
    /* Center horizontally */
    background-size: cover;
    min-height: 100vh;
    width: 100%;

    padding: 80px 20px 40px;
    /* Extra top padding for nav */
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    text-align: center;
  }

  header h1,
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  header p,
  .hero p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  /* Fix contact section centering and padding on mobile */
  .cta {
    padding: 60px 20px !important;
  }

  .cta>div {
    padding: 40px 20px !important;
    max-width: 100% !important;
  }

  .cta h2 {
    font-size: 2rem !important;
  }

  .cta p {
    font-size: 1.1rem !important;
  }

  .cta a {
    padding: 18px 30px !important;
    font-size: 1rem !important;
    width: 90%;
    max-width: 300px;
  }

}


@media(max-width: 500px) {
  .cta h2 {
    font-size: 2.2rem;
  }

  .carousel-container {
    max-width: 220px;
    /* 1 item: 180px + padding */
    padding: 0 20px;
    /* Symmetric padding for small mobile */
  }

  .carousel-item {
    width: 180px;
    height: 120px;
    padding: 15px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
}

/* --- Image Gallery Component --- */
.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-image {
  width: 100%;
  display: block;
  border-radius: 22px;
  transition: opacity 0.5s ease;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #5b1d24;
  font-size: 2.5rem;
  font-weight: bold;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.gallery-nav:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-prev {
  left: 15px;
}

.gallery-next {
  right: 15px;
}

.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Responsive gallery */
@media(max-width: 900px) {
  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-dots {
    bottom: 15px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

/* Prime Logo Text Styles */
.prime-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.prime-logo-main {
  font-family: 'Designer', sans-serif;
  font-size: 8rem;
  font-weight: normal;
  color: #fff;
  line-height: 1;
  margin: 0;
  text-transform: none;
}

.prime-logo-subtitle {
  font-family: 'Designer', sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  color: #fff;
  line-height: 1;
  margin: 0;
  text-transform: none;
  opacity: 0.95;
}

/* Responsive adjustments for Prime logo */
@media (max-width: 768px) {
  .prime-logo-main {
    font-size: 5rem;
  }

  .prime-logo-subtitle {
    font-size: 1.8rem;
  }
}