/*
 * style.css
 * Extracted CSS from index.html
 */

body {
  background: linear-gradient(180deg, #fafdff, #ffffff);
  font-family: 'Cinzel', serif; 
  overflow-x: hidden;
  overflow-y: auto;
  color: #333;
}
header.banner {
  /* Image Setup */
  background-image: url('assets/weblogo.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  /* Size & Shape */
  width: 100%;
  aspect-ratio: 56 / 26;       /* Keeps the shape consistent */
  
  /* POSITIONING (This replaces the Tailwind classes) */
  margin: 3rem auto auto auto; 
  border-radius: 1.5rem;       /* Equivalent to rounded-3xl */
  
  /* Visual Effects */
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); /* Nice shadow */
}

section {
  padding: 60px 20px;
  position: relative;
  z-index: 10;
}

.bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* Bubbles style */
.bubbles span {
  position: absolute;
  display: block;
  width: 15vw;            /* responsive size */
  height: 15vw;
  min-width: 60px;
  min-height: 60px;
  max-width: 160px;
  max-height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,1), rgba(0,180,255,0.7));
  animation: float 30s ease-in-out infinite;
  mix-blend-mode: lighten;
  opacity: 0.9;
  filter: blur(1px);
}

/* Color variation */
.bubbles span:nth-child(3n) { background: radial-gradient(circle at 30% 30%, rgba(255,255,255,1), rgba(255,100,180,0.8)); }
.bubbles span:nth-child(4n) { background: radial-gradient(circle at 30% 30%, rgba(255,255,255,1), rgba(255,220,100,0.8)); }
.bubbles span:nth-child(5n) { background: radial-gradient(circle at 30% 30%, rgba(255,255,255,1), rgba(100,255,150,0.8)); }
.bubbles span:nth-child(6n) { background: radial-gradient(circle at 30% 30%, rgba(255,255,255,1), rgba(120,100,255,0.8)); }

/* Animation keyframes */
@keyframes float {
  0% { transform: translateY(0) translateX(0) scale(1); }
  25% { transform: translateY(-15vh) translateX(5vw) scale(1.1); }
  50% { transform: translateY(0) translateX(-5vw) scale(0.9); }
  75% { transform: translateY(-10vh) translateX(3vw) scale(1.05); }
  100% { transform: translateY(0) translateX(0) scale(1); }
}

/* Initial positions and animation delays */
.bubbles span:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.bubbles span:nth-child(2) { top: 70%; left: 20%; animation-delay: 2s; }
.bubbles span:nth-child(3) { top: 30%; left: 35%; animation-delay: 4s; }
.bubbles span:nth-child(4) { top: 80%; left: 60%; animation-delay: 1s; }
.bubbles span:nth-child(5) { top: 50%; left: 80%; animation-delay: 5s; }
.bubbles span:nth-child(6) { top: 20%; left: 70%; animation-delay: 3s; }
.bubbles span:nth-child(7) { top: 60%; left: 50%; animation-delay: 6s; }
.bubbles span:nth-child(8) { top: 40%; left: 90%; animation-delay: 7s; }
.bubbles span:nth-child(9) { top: 15%; left: 45%; animation-delay: 9s; }
.bubbles span:nth-child(10){ top: 85%; left: 30%; animation-delay: 11s; }
.bubbles span:nth-child(11){ top: 35%; left: 10%; animation-delay: 13s; }
.bubbles span:nth-child(12){ top: 65%; left: 75%; animation-delay: 15s; }
.bubbles span:nth-child(13){ top: 25%; left: 55%; animation-delay: 17s; }
.bubbles span:nth-child(14){ top: 45%; left: 15%; animation-delay: 19s; }
.bubbles span:nth-child(15){ top: 75%; left: 85%; animation-delay: 21s; }

/* Responsive adjustments */
@media (max-width: 768px) {
  /* Reduce translation distances on small screens */
  @keyframes float {
    0% { transform: translateY(0) translateX(0) scale(1); }
    25% { transform: translateY(-8vh) translateX(3vw) scale(1.05); }
    50% { transform: translateY(0) translateX(-3vw) scale(0.95); }
    75% { transform: translateY(-5vh) translateX(2vw) scale(1.02); }
    100% { transform: translateY(0) translateX(0) scale(1); }
  }

  /* Reposition bubbles to avoid clutter */
  .bubbles span:nth-child(1) { top: 5%; left: 5%; }
  .bubbles span:nth-child(2) { top: 80%; left: 10%; }
  .bubbles span:nth-child(3) { top: 20%; left: 50%; }
  .bubbles span:nth-child(4) { top: 70%; left: 70%; }
  .bubbles span:nth-child(5) { top: 10%; left: 80%; }

  /* Hide some bubbles to reduce overcrowding */
  .bubbles span:nth-child(6),
  .bubbles span:nth-child(7),
  .bubbles span:nth-child(8),
  .bubbles span:nth-child(9),
  .bubbles span:nth-child(10),
  .bubbles span:nth-child(11),
  .bubbles span:nth-child(12),
  .bubbles span:nth-child(13),
  .bubbles span:nth-child(14),
  .bubbles span:nth-child(15) {
    display: none;
  }
}
/* 4. Button Component Styles (New for the Contact Page) */
.bubble-button {
display: inline-block;
padding: 14px 32px;
margin: 8px;
font-size: 1.2rem;
text-decoration: none;
color: white;
border-radius: 50px;
background: linear-gradient(135deg, #ff6ec4, #7873f5);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
transition: transform 0.2s, box-shadow 0.2s;
}

.bubble-button:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* General Section Styling */
.faq-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.faq-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Accordion Styling */
details {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden; /* Keeps animation contained */
    transition: all 0.3s ease;
}

/* The Question (Summary) */
summary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 700;
    color: #2c3e50;
    list-style: none; /* Removes default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

summary:hover {
    background-color: #f1f5f9;
}

/* Custom Plus/Minus Icon using CSS */
summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #777;
    transition: transform 0.2s ease;
}

/* Rotate icon when open */
details[open] summary::after {
    content: '-';
    transform: rotate(0deg); 
    /* Optional: You can use transform: rotate(45deg) if using a plus icon to turn it into an X */
}

/* Removes default triangle in Webkit browsers */
summary::-webkit-details-marker {
    display: none;
}

/* The Answer */
.faq-answer {
    padding: 0 20px 20px 20px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
}

/* Highlight effect when opened */
details[open] {
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-color: #d1d1d1;
}

/* =========================================
   5. TERMS & CONDITIONS STYLES (Wash Mafia)
   ========================================= */

.wm-container {
  max-width: 64rem;
  margin: 40px auto;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.80); /* Slight transparency for bubbles */
  border-radius: 1.5rem; /* Matches your header rounded-3xl */
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10; /* Ensures it sits above bubbles */
}

/* Header Styling */
.wm-header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 3px solid #1d4ed8; /* Using your button purple */
  padding-bottom: 20px;
}

.wm-header h1 {
  font-family: 'Cinzel', serif; /* Your brand font */
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  color: #333;
  font-size: 2.5rem;
  margin: 0;
}

/* Section Headings */
.wm-terms-section {
  margin-bottom: 30px;
}

.wm-terms-section h2 {
  font-family: 'Cinzel', serif; /* Your brand font */
  background: linear-gradient(90deg, #1d4fd85d, #ffffff);
  padding: 10px 15px;
  border-left: 5px solid #1d4ed8 /* Using your button pink */
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #333;
}

/* Legal Text Formatting (Sans-serif for readability) */
.wm-terms-list, 
.wm-terms-section p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #555;
  line-height: 1.6;
}

.wm-terms-list {
  list-style-type: none;
  padding-left: 0;
}

.wm-terms-list li {
  margin-bottom: 15px;
  padding-left: 15px;
}

.wm-label {
  font-weight: 800;
  color: #2c3e50;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block; /* Makes the label sit on its own line on mobile */
  margin-bottom: 4px;
}

/* Footer & Button Integration */
.wm-footer {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  text-align: center;
  font-family: 'Cinzel', serif;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .wm-container {
    padding: 20px;
    margin: 20px 10px;
  }
  .wm-header h1 {
    font-size: 1.8rem;
  }
}