
:root {
  --primary-color: #10002C; 
  --secondary-color: #DFAEFF; 
  --footerBg-color: white; 
  --navAndButtonBG-color: #10002b66; 
  --navAndButtonBlinkBG-color: #10002b99; 
  --navAndButtonEdge-color: #DFAEFF33; 
  --generalText-color: black; 
  --storyTextS1-color: var(--secondary-color); 
  --storyTextS2-color: var(--primary-color); 
  --footerText-color: black; 
  --heroButtonText-color: var(--secondary-color); 
  --navText-color: var(--secondary-color); 
  --hoverHighlightText-color: white; 
  --focus-color: rgba(150,150,150,1); 
}


body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background: white;
  color: var(--generalText-color);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}


a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--focus-color); 
  outline-offset: 2px;
}



nav.floating-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  background: var(--navAndButtonBG-color);
  border: 2px solid var(--navAndButtonEdge-color);
  border-radius: 50px;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navText-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, border 0.3s ease;
}


nav.floating-nav:hover {
  border: 2px solid var(--hoverHighlightText-color);
  transition: background 0.3s ease;
}

nav .logo a {
  color: var(--navText-color);
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav .logo a:hover {
  color: var(--hoverHighlightText-color);
  text-shadow: 0 0 8px rgba(1, 1, 1, 1), 0 0 12px rgba(1, 1, 1, 0.7);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

nav ul li a {
  color: var(--navText-color);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav ul li a:hover {
  color: var(--hoverHighlightText-color);
  text-shadow: 0 0 8px rgba(1, 1, 1, 1), 0 0 12px rgba(1, 1, 1, 0.7);
}


#hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0; 
}


#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0.0; 
  pointer-events: none; 
  z-index: 1; 
}


.hero-button-container {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2; 
}


.hero-button-container button {
  background: var(--navAndButtonBG-color); 
  border: 2px solid var(--navAndButtonEdge-color); 
  border-radius: 50px; 
  padding: 1rem 2rem; 
  font-size: 1.2rem; 
  color: var(--heroButtonText-color); 
  cursor: pointer;
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
  position: relative; 
  overflow: hidden; 
  transition: background-color 0.3s ease, color 0.3s ease; 
}


@keyframes blinkTextAndButtonShadow {
  0% {
    box-shadow: 0 0 10px transparent; 
    background-color: var(--navAndButtonBG-color); 
  }
  50% {
    box-shadow: 0 0 10px white, 0 0 40px white, 0 0 60px white; 
    background-color: var(--navAndButtonBlinkBG-color); 
  }
  100% {
    box-shadow: 0 0 10px transparent; 
    background-color: var(--navAndButtonBG-color); 
  }
}


.hero-button-container button {
  background: var(--navAndButtonBG-color); 
  border: 2px solid var(--navAndButtonEdge-color); 
  border-radius: 50px; 
  padding: 1rem 2rem; 
  font-size: 1.2rem; 
  color: var(--heroButtonText-color); 
  cursor: pointer;
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
  position: relative; 
  overflow: hidden; 

  
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;

  
  animation: blinkTextAndButtonShadow 1s infinite alternate; 

  
  animation-timing-function: ease-in-out; 
}


@media (max-width: 600px) {
  .hero-button-container button {
    padding: 1rem 2rem; 
    font-size: 1.2rem; 
  }
}


.hero-button-container button::before {
  content: ''; 
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px; 
   
  z-index: -1; 
  transform: scale(1.05); 
  opacity: 0; 
  transition: opacity 0.3s ease, transform 0.3s ease; 
}


.hero-button-container button:hover {
  background-color: var(--navAndButtonBG-color);; 
  border: 2px solid var(--hoverHighlightText-color); 
  color: var(--hoverHighlightText-color); 
  text-shadow: 0 0 12px rgba(1, 1, 1, 1), 0 0 12px rgba(1, 1, 1, 0.7); 
}


.hero-button-container button:hover::before {
  opacity: 1; 
  transform: scale(1.1); 
}




#our-story {
  padding: 4rem 2rem;
  text-align: center;
}

#our-story h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;  

  font-size: 2.5rem;
  color: var(--generalText-color);
  margin-bottom: 2rem;
  text-transform: uppercase;
}





.section-divider {
  width: 100%; 
  padding: 4rem 0rem; 
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.section-lilac {
  background: var(--primary-color); 
  color: var(--storyTextS1-color) ; 
  padding: 4rem 0rem; 
  box-sizing: border-box;
}


.section-lilac h3,
.section-lilac p {
  color: var(--storyTextS1-color) !important; 
}


.section-pink {
  background: var(--secondary-color); 
  color: var(--storyTextS2-color); 
  padding: 4rem 0rem; 
  box-sizing: border-box;
}


.section-pink h3,
.section-pink p {
  color: var(--storyTextS2-color) !important; 
}


.section-divider-band {
  width: 100%; 
  height: 1rem; 
}


.section-divider-band.lilac-to-pink {
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color)); 
}


.section-divider-band.pink-to-lilac {
  background: linear-gradient(to top, var(--primary-color), var(--secondary-color)); 
}


#our-story {
  margin: 0;
  padding: 0;
}



.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0rem;
  gap: 1rem; 
  justify-content: center;
  padding: 0 1rem; 
}

.row img {
  flex: 1 1 45%; 
  max-width: 45%; 
  min-width: 200px; 
  border-radius: 8px;
  object-fit: cover; 
  width: 100%; 
  aspect-ratio: 1 / 1; 
}

.row .text {
  flex: 1 1 45%;
  padding: 0 2rem;
  font-size: 1.2rem;
  text-align: left; 

}

.row .text h3 {
  font-size: 1.5rem;
  color: var(--generalText-color);
  margin-bottom: 0.5rem;
}

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


.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}







@keyframes slideInFromLeft {
  from {
    transform: translateX(-5%);
    opacity: 0.5;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(5%);
    opacity: 0.5;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


.image-slide,
.text-slide {
  opacity: 0;
}

.slide-in-from-left {
  animation: slideInFromLeft 0.3s ease-out forwards;
}

.slide-in-from-right {
  animation: slideInFromRight 0.3s ease-out forwards;
}


#contact {
  background-color: var(--footerBg-color);
  color: var(--footerText-color);
  padding: 3rem 2rem;
  display: flex;
  justify-content: center; 
  align-items: center; 
}

.contact-container {
  display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  text-align: center;
  width: 100%;
  max-width: 1200px; 
}

.contact-info {
  margin-bottom: 2rem; 
}


.cta-button {
  display: inline-block;
  background-color: white; 
  border: 2px solid black; 
  color: black; 
  margin-top: 1rem; 
  padding: 1rem 2rem;
  border-radius: 0px;
  font-size: 1.2rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease; 
}


.cta-button:hover {
  background-color: black; 
  color: white; 
  border-color: white; 
}


#contact {
  background-color: var(--footerBg-color);
  color: var(--footerText-color);
  padding: 3rem 2rem;
  display: flex;
  justify-content: center; 
  align-items: center; 
  position: relative; 
}


#contact a:visited {
  color: var(--footerText-color); 
}

.contact-container {
  display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  text-align: center;
  width: 100%;
  max-width: 1200px; 
  position: relative;
}

.contact-info {
  margin-bottom: 2rem; 
  z-index: 2; 
}


.cta-button {
  display: inline-block;
  background-color: white; 
  border: 2px solid black; 
  color: black; 
  margin-top: 1rem; 
  padding: 1rem 2rem;
  border-radius: 0px;
  font-size: 1.2rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease; 
}


.cta-button:hover {
  background-color: black; 
  color: white; 
  border-color: white; 
}


.side-image {
  position: fixed;
  width: 150px;
  transition: transform 0.2s ease-in-out; 
}

.left-image {
  left: 10%; 
  top: 50%; 
  transform: translateY(-50%); 
  transform-origin: center;
}

.right-image {
  right: 10%; 
  top: 50%; 
  transform: translateY(-50%); 
  transform-origin: center;
}


footer {
  text-align: center;
  padding: 0rem;
  background-color: var(--footerBg-color);
  color: var(--footerText-color);
}



#privacy-policy {
  background-color: white; 
  color: black; 
  padding: 0rem 2rem; 
  text-align: center;
  min-height: 95vh; 
  box-sizing: border-box;
  max-width: 1000px; 
  margin: 0 auto; 
}

#privacy-policy {
  font-family: 'Adobe Arabic', sans-serif;
  font-size: 1rem;  
  line-height: 1.6;  
}

#privacy-policy h1,
#privacy-policy h2,
#privacy-policy h3,
#privacy-policy li {
  text-align: left;  
  margin-bottom: 0px;  
}

#privacy-policy p {
  text-align: left;  
  margin-top: 0;  
}

#privacy-policy h2 {
  font-family: 'Adobe Arabic', sans-serif;
  font-weight: 600;  

  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

#privacy-policy p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}


#privacy-policy a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

#privacy-policy a:hover {
  text-decoration: underline;
}
