/* =================================================================== 
 *  TOC:
 *  # base style overrides
 *     ## links
 *  # typography & general theme styles
 *    ## Lists
 *    ## responsive video container
 *    ## floated image
 *    ## tables
 *    ## Spacing 
 *    ## pace.js styles - minimal
 *  # preloader
 *  # forms 
 *    ## Style Placeholder Text
 *    ## Change Autocomplete styles in Chrome
 *  # buttons
 *  # additional components
 *    ## additional typo styles 
 *    ## skillbars
 *    ## alert box 
 *    ## pagination 
 *  # Common and Reusable Styles
 *  # header 
 *    ## header logo
 *    ## main navigation
 *    ## menu trigger
 *  # intro 
 *  # about
 *    ## timeline
 *  # services
 *  # CTA
 *  # works
 *  # testimonials
 *  # contact
 *  # footer
 *    ## copyright
 *    ## go to top
 *  # IE10/IE11 Specific
 *
 * =================================================================== */

/* ===================================================================
 * # base style overrides
 *
 * ------------------------------------------------------------------- */

/* root */

:root {
  --color-one: #b69858;
  --color-two: black;
}

html {
  font-size: 10px;

}

@media screen and (max-width: 400px) {
  html {
    font-size: 9.411764705882353px;
  }
}

html,
body {
  height: 100%;
}

body {
  background: #050505;
  font-family: 'Roboto', sans-serif; /* Modern and clean */
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333; /* Softer black for better readability */
  margin: 0;
  padding: 0;
}

/* ------------------------------------------------------------------- 
 * ## links
 * ------------------------------------------------------------------- */
a {
  color: var(--color-one);
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus,
a:active {
  color: #000000;
}

a:hover,
a:active {
  outline: 0;
}

/* ===================================================================
 * # typography & general theme styles
 * 
 * ------------------------------------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #b69858; /* Accent color */
}

h1,
h2,
h3,
h4 {
  margin-top: 4rem;
  margin-bottom: 3.6rem;
}

@media screen and (max-width: 600px) {

  h1,
  h2,
  h3,
  h4 {
    margin-top: 6rem;
  }
}

h1 {
  font-size: 3.6rem;
  line-height: 1.222;
  letter-spacing: -0.1rem;
}

@media screen and (max-width: 600px) {

  h1 {
    font-size: 3.3rem;
    letter-spacing: -0.07rem;
  }
}

h2 {
  font-size: 3rem;
  line-height: 1.2;
}

h3 {
  font-size: 2.4rem;
  line-height: 1.1667;
}

h4 {
  font-size: 2.1rem;
  line-height: 1.286;
}

p.lead {

  text-align: justify;
  font-family: 'Lora', serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.833;
  margin-bottom: 3.6rem;
  color: #000000;
}

@media screen and (max-width: 1200px) {
  p.lead {
    font-size: 2.2rem;
  }
}

i {
  font-size: inherit;
  line-height: inherit;
}

i {
  font-family: 'Lora', serif;
  font-style: italic;
}

/* ------------------------------------------------------------------- 
 * ## Lists
 * ------------------------------------------------------------------- */

ul {
  list-style: disc;
}

li {
  display: list-item;
}

ul {
  margin-left: 1.6rem;
}

ul li {
  padding-left: 0.4rem;
}

/* ------------------------------------------------------------------- 
 * ## responsive video container
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## floated image
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## tables
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## Spacing 
 * ------------------------------------------------------------------- */
button {
  margin-bottom: 1.6rem;
}

p,
ul {
  margin-bottom: 3.2rem;
}

/* ------------------------------------------------------------------- 
 * ## pace.js styles - minimal
 * ------------------------------------------------------------------- */

/* =================================================================== 
 * # preloader
 *
 * ------------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #050505;
  z-index: 500;
  height: 100vh;
  width: 100%;
}

.no-js #preloader {
  display: none;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  padding: 0;
  margin-left: -30px;
  margin-top: -30px;
}

#loader:before {
  content: '';
  border-top: 6px solid rgba(255, 255, 255, 0.1);
  border-right: 6px solid rgba(255, 255, 255, 0.1);
  border-bottom: 6px solid rgba(255, 255, 255, 0.1);
  border-left: 6px solid var(--color-one);
  -webkit-animation: load 1.1s infinite linear;
  animation: load 1.1s infinite linear;
  display: block;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



/* ------------------------------------------------------------------- 
 * responsive:
 * common and reusable styles
 * ------------------------------------------------------------------- */

@media screen and (max-width: 1024px) {
  .heading-block {
    max-width: 800px;
  }

  .section-desc {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 800px) {
  .heading-block {
    max-width: 600px;
  }

  .section-heading {
    font-size: 3.6rem;
    padding-top: 0;
    padding-bottom: 3.2rem;
    text-align: center;
  }

  .section-heading::before {
    top: auto;
    bottom: 0;
    left: 50%;
    margin-left: -75px;
  }
}

@media screen and (max-width: 600px) {
  .section-heading {
    margin-bottom: 6.8rem;
  }

  .section-desc {
    font-size: 4rem;
  }
}

@media screen and (max-width: 400px) {
  .section-desc {
    font-size: 3.4rem;
  }
}

/* ===================================================================
 * # header 
 *
 * ------------------------------------------------------------------- */
/* Header Styling */
.s-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.9); /* Dark background */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.s-header.scrolled {
  background-color: rgba(0, 0, 0, 0.8); /* Slightly lighter on scroll */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

/* Logo Styling */
.header-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%; /* Circular logo */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.header-logo img:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}

/* Navigation Menu */
.header-nav-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-main-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-main-nav li {
  position: relative;
}

.header-main-nav a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
}

.header-main-nav a:hover {
  color: var(--color-one); /* Gold accent color */
  transform: translateY(-3px); /* Lift effect */
}

.header-main-nav .current a {
  color: var(--color-one); /* Highlight current section */
}

/* Social Icons */
.header-social {
  display: flex;
  gap: 1.5rem;
}

.header-social li {
  list-style: none;
}

.header-social li a {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease, transform 0.3s ease;
}

.header-social li a:hover {
  color: var(--color-one);
  transform: scale(1.2); /* Slight zoom on hover */
}

/* Mobile Menu Toggle */
.header-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .header-main-nav {
    display: none; /* Hide menu on mobile */
  }

  .header-menu-toggle {
    display: block; /* Show toggle button */
  }

  .header-nav-wrap.is-open .header-main-nav {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 1rem 0;
  }

  .header-main-nav li {
    text-align: center;
  }
}

/* ===================================================================
 * # intro 
 *
 * ------------------------------------------------------------------- */
/* Intro Section Enhancements */
.s-intro {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), 
              url('../images/img/intro-bg.jpg') no-repeat center center/cover;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}

.intro-heading {
  font-size: 6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #b69858; /* Gold accent color */
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-in-out;
}

.intro-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-in-out;
}

.intro-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  color: #ccc;
  margin-top: 1rem;
  animation: fadeIn 1.5s ease-in-out;
}

.intro-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.6rem;
  color: #b69858;
  animation: fadeInUp 2s ease-in-out;
}

.intro-scroll a {
  text-decoration: none;
  color: #b69858;
  border-bottom: 1px solid #b69858;
  padding-bottom: 0.2rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.intro-scroll a:hover {
  color: #fff;
  border-color: #fff;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ------------------------------------------------------------------- 
 * responsive:
 * intro
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1400px) {

  .intro-text h1 {
    font-size: 7.2rem;
  }
}

@media screen and (max-width: 1200px) {
  .intro-content {
    max-width: 1000px;
  }

  .intro-text h1 {
    font-size: 7rem;
  }
}

@media screen and (max-width: 1024px) {
  .s-intro {
    max-height: 800px;
  }

  .intro-text h1 {
    font-size: 6.2rem;
  }
}

@media screen and (max-width: 900px) {
  .intro-text h1 {
    font-size: 6rem;
  }

  .intro-text br {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .intro-content {
    width: 88%;
    padding-top: 8rem;
  }

  .intro-pic {
    top: 12%;
    left: 40%;
  }

  .intro-pic::before {
    opacity: 0.4;
  }

  .intro-grid {
    top: 20%;
    opacity: 0.1;
  }

  .intro-text h1 {
    font-size: 5.6rem;
  }
}

@media screen and (max-width: 700px) {
  .intro-text h1 {
    font-size: 5rem;
  }

  .intro-pic {
    left: 30%;
  }

  .intro-grid {
    left: 15%;
  }
}

@media screen and (max-width: 600px) {
  .s-intro {
    max-height: none;
  }

  .intro-content {
    width: auto;
  }

  .intro-pic {
    left: 20%;
  }

  .intro-grid {
    left: 10%;
  }

  .intro-text {
    -webkit-transform: translate3d(0, -4.8rem, 0);
    transform: translate3d(0, -4.8rem, 0);
  }

  .intro-text h1 {
    font-size: 4.8rem;
  }

  .intro-scroll {
    font-size: 1.1rem;
    left: 30px;
  }
}

@media screen and (max-width: 400px) {
  .s-intro {
    min-height: 656px;
  }

  .intro-text h1 {
    font-size: 4.5rem;
  }
}

@media screen and (max-width: 350px) {
  .intro-text h1 {
    font-size: 4.2rem;
  }
}

/* ===================================================================
 * # about
 *
 * ------------------------------------------------------------------- */
.s-about {
  padding-top: 14.2rem;
  padding-bottom: 14.8rem;
  background-color: #ffffff;
}

.s-about .row {
  max-width: 1140px;
}

.s-about>[class*='about-'] {
  margin-bottom: 15.2rem;
}

.s-about>[class*='about-']:last-child {
  margin-bottom: 0;
}

.about-me__text {
  -webkit-columns: 2 360px;
  -moz-columns: 2 360px;
  columns: 2 360px;
  column-gap: 64px;
}

.about-me__image img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* Adds rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
  object-fit: cover;
}

.warning {
  font-style: italic;
  border-bottom: 1px solid black;

}

/* -------------------------------------------------------------------
 * ## timeline
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * responsive:
 * about
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
  .s-about {
    padding-top: 17.2rem;
    padding-bottom: 15.6rem;
  }

  .about-experience__timeline .column::last-child {
    padding-left: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .about-me__text {
    column-gap: 40px;
  }
}

@media screen and (max-width: 900px) {
  .s-about .row {
    max-width: 700px;
  }
}

@media screen and (max-width: 800px) {
  .s-about {
    padding-top: 16rem;
  }

  .s-about .row {
    max-width: 600px;
  }
}

@media screen and (max-width: 400px) {
  .s-about>[class*='about-'] {
    margin-bottom: 14rem;
  }
}

/* ===================================================================
 * # works
 *
 * ------------------------------------------------------------------- */
.s-works {
  max-width: 1140px;
  padding-top: 14.2rem;
  padding-bottom: 16rem;
  background-color: #070707;
  margin: 0 auto;
}

.masonry .grid-sizer,
.masonry__brick {
  width: 33%;
}

.masonry__brick {
  float: left;
  padding: 0 30px;
  margin-bottom: 60px;
}

.item-folio {
  text-align: center;
  padding: 30px;
  background-color: #efefef;
  transition: all 0.5s ease-in-out;
}

/* item-folio thumb
 * -------------------------------------- */
.item-folio__thumb {
  position: relative;
  overflow: hidden;
}

.item-folio__thumb .thumb-link {
  display: block;
  position: relative;
}

.item-folio__thumb .thumb-link::before,
.item-folio__thumb .thumb-link::after {
  transition: all 0.5s ease-in-out;
}

.item-folio__thumb .thumb-link::before {
  display: block;
  content: '';
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.item-folio__thumb .thumb-link::after {
  display: block;
  content: '';
  width: 3.6rem;
  height: 3.6rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80%;
  background-image: url(../images/icons/icon-plus.svg);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
}

.item-folio__thumb img {
  vertical-align: bottom;
}

/* item-folio thumb on hover 
 * ----------------------------------------------- */
.item-folio__thumb:hover a::before,
.item-folio__thumb:hover a::after {
  opacity: 1;
  visibility: visible;
}

/* item-folio text
 * ------------------------------------------------ */
.item-folio__text {
  margin-top: 8.92%;
}

.item-folio__text,
.item-folio__title,
.item-folio__cat {
  display: inline-block;
}

.item-folio__title,
.item-folio__cat {
  font-family: 'Roboto', sans-serif;
  font-size: 1.7rem;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 2rem;
}

.item-folio__title {
  font-weight: 500;
  color: #000000;
}

.item-folio__cat {
  font-weight: 300;
  color: rgba(0, 0, 0, 0.7);
}

.item-folio__cat::before {
  content: '-';
  margin: 0 0.4rem;
}

.item-folio__caption {
  display: none;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * works
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
  .masonry__brick {
    padding: 0 24px;
    margin-bottom: 48px;
  }

  .item-folio {
    padding: 30px;
  }

  .item-folio__thumb .thumb-link::after {
    width: 3rem;
    height: 3rem;
  }

  .item-folio__title,
  .item-folio__cat {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .masonry__brick {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .item-folio {
    padding: 40px;
  }
}

@media screen and (max-width: 900px) {
  .masonry__brick {
    padding: 0 16px;
    margin-bottom: 32px;
  }

  .item-folio {
    padding: 22px;
  }
}

@media screen and (max-width: 800px) {
  .s-works {
    padding-top: 16rem;
  }

  .masonry-wrap {
    margin-top: 7.2rem;
  }

  .masonry .grid-sizer,
  .masonry__brick {
    width: 100%;
  }

  .masonry__brick {
    float: none;
    margin-bottom: 60px;
  }

  .item-folio {
    padding: 5.92% 5.92% 5.92%;
  }

  .item-folio__thumb .thumb-link::after {
    width: 3.6rem;
    height: 3.6rem;
  }

  .item-folio__title,
  .item-folio__cat {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 600px) {
  .masonry-wrap {
    width: auto;
    padding-left: 25px;
    padding-right: 25px;
  }

  .masonry__brick {
    padding: 0 10px;
    margin-bottom: 44px;
  }

  .item-folio__thumb .thumb-link::after {
    width: 3rem;
    height: 3rem;
  }

  .item-folio__title,
  .item-folio__cat {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 500px) {
  .masonry__brick {
    margin-bottom: 1.6rem;
  }
}

@media screen and (max-width: 400px) {
  .masonry__brick {
    padding: 0;
    margin-bottom: 3.2rem;
  }
}

/* ===================================================================
 * # testimonials
 *
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * responsive:
 * testimonials
 * ------------------------------------------------------------------- */

/* ===================================================================
 * # contact
 *
 * ------------------------------------------------------------------- */
/* Contact Section Enhancements */
.s-contact {
  padding: 8rem 2rem;
  background-color: #f9f9f9; /* Light background for contrast */
  color: #333;
  text-align: center;
}

.s-contact .section-heading {
  font-size: 3.6rem;
  color: #b69858; /* Accent color */
  margin-bottom: 2rem;
}

.s-contact .section-desc {
  font-size: 1.8rem;
  color: #555;
  margin-bottom: 4rem;
}

.contact-main a {
  color: #b69858;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.contact-main a:hover {
  color: #333;
  border-bottom: 2px solid #b69858;
}

.contact-infos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
}

.contact-infos .column {
  flex: 1 1 calc(33.333% - 2rem); /* Three columns layout */
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-infos .column:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-infos h3 {
  font-size: 2rem;
  color: #b69858;
  margin-bottom: 1rem;
}

.contact-infos p {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.8;
}

.contact-social ul {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.contact-social ul li a {
  font-size: 2rem;
  color: #b69858;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-social ul li a:hover {
  color: #333;
  transform: scale(1.2);
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 800px) {
  .contact-infos .column {
    flex: 1 1 100%; /* Single column layout for smaller screens */
  }
}

/* ===================================================================
 * # FAQ
 *
 * ------------------------------------------------------------------- */

.row-faq {
  padding: 0% 10%;
}

.faq-title,
.faq-text {
  margin-bottom: 3.6rem;
}

.faq-title {
  font-size: 3.4rem;
  margin-bottom: 2rem;
}

.faq-text {
  margin-bottom: 3.6rem;
  font-size: 2.8rem;
  line-height: 1.8;
}

.faq-text p {
  margin-bottom: 1.6rem;
  color: #2C2C2C;
}

.faq-text p:last-child {
  margin-bottom: 0;
}

details summary {
  cursor: pointer;
  font-size: 2rem;
  font-weight: bold;
  color: #b69858;
  margin-bottom: 1rem;
}

details summary:hover {
  color: #333;
}

details[open] summary {
  color: #333;
}

details .faq-text {
  padding: 1rem;
  background-color: #f4f4f4;
  border-left: 4px solid #b69858;
  margin-bottom: 1rem;
}

/* FAQ Section Enhancements */
.s-accordian {
  background-color: #f9f9f9; /* Light background for contrast */
  padding: 6rem 2rem;
}

.row-faq {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.row-faq .column {
  flex: 1 1 calc(33.333% - 2rem); /* Three columns layout */
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.row-faq .column:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

details {
  border: none;
  margin-bottom: 1.5rem;
}

details summary {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  padding: 1rem;
  background-color: #b69858; /* Accent color */
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

details summary:hover {
  background-color: #333;
  color: #fff;
}

details[open] summary {
  background-color: #444;
  color: #fff;
}

details .faq-text {
  padding: 1.5rem;
  background-color: #f4f4f4;
  border-left: 4px solid #b69858;
  border-radius: 0 0 5px 5px;
  margin-top: 1rem;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.8;
}

@media screen and (max-width: 800px) {
  .row-faq .column {
    flex: 1 1 calc(50% - 2rem); /* Two columns layout for smaller screens */
  }
}
 
@media screen and (max-width: 800px) {
  .row-faq, .contact-infos {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  .row-faq .column {
    flex: 1 1 100%; /* Single column layout for mobile */
  }
}

/* -------------------------------------------------------------------*/

section {
  padding: 6rem 0;
}

section:nth-child(even) {
  background-color: #f9f9f9; /* Light gray for contrast */
}

/* ===================================================================
 * # footer
 *
 * ------------------------------------------------------------------- */
footer {
  background-color: #050505;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

footer a,
footer a:visited {
  color: #ffffff;
}

footer a:hover {
  color: var(--color-one);
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
}

.footer-social {
  display: flex;
}

.footer-social__liste {
  display: flex;
  gap: 20px;
}

.footer-social__liste li {
  list-style: none;
}

.footer-social__liste li a {
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social__liste li a:hover {
  color: #b69858;
  transform: scale(1.2);
}

.footer-social li:hover {
  transition: all 1.2s;
  transform: scale(1.6);
}

/* ------------------------------------------------------------------- 
 * ## copyright
 * ------------------------------------------------------------------- */

.ss-copyright span {
  color: var(--color-one);
  font-weight: 800;
  display: inline-block;
}

.ss-copyright span::after {
  content: '|';
  display: inline-block;
  padding: 0 1rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.1);
}

.ss-copyright span:last-child::after {
  display: none;
}

/* ------------------------------------------------------------------- 
 * ## go to top
 * ------------------------------------------------------------------- */
.ss-go-top {
  position: fixed;
  top: 90vh;
  right: 2rem;
  z-index: 2;
}

.ss-go-top a {
  display: block;
  background: var(--color-one);
  text-decoration: none;
  margin: 0;
  padding: 0;
  border: 0 none;
  height: 40px;
  width: 40px;
  line-height: 60px;
  text-align: center;
  color: rgb(189, 107, 107);
  text-transform: uppercase;
  transition: all 0.3s;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/icons/icon-arrow-up.svg);
  background-size: 10px 16px;
  position: relative;
}

.ss-go-top a:hover {
  background-color: var(--color-two);
  color: var(--color-one);
  transform: scale(1.3);
}

.ss-go-top::before {
  content: '';
  display: block;
  width: 1px;
  height: 10px;
  position: absolute;
  top: -115px;
  left: 50%;
}

.ss-go-top::after {
  content: 'back to top';
  display: block;
  float: left;
  width: 180px;
  font-size: 1.8rem;
  line-height: 0px;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  color: var(--color-one);
  transition: all 0.5s;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  position: absolute;
  left: calc(30px + 15px);
  top: -75px;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * footer
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
  .ss-go-top {
    right: 3rem;
  }
}

@media screen and (max-width: 900px) {
  .ss-go-top {
    right: 0;
  }

  .ss-go-top::before,
  .ss-go-top::after {
    display: none;
  }

  .footer-content {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 600px) {
  .ss-copyright {
    /* margin-top: 9rem; */
    padding: 0;
    text-align: center;
  }

  .ss-copyright span {
    display: block;
  }

  .ss-copyright span::after {
    display: none;
  }

  .ss-go-top {
    right: 10%;
    margin-right: -30px;
  }
}

@media screen and (max-width: 400px) {
  .ss-copyright span {
    font-size: 13px;
  }
}

/* @media screen and (max-width: 6000px) {
  .map {
  max-width: 300px!important;


  }
} */
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}


#cookieBanner {
  position: fixed;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-one);
  padding: 10px;
  text-align: center;
}

button {
  background-color:var(--color-two);
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #31062e;
}

.cgu__container {
  display: flex;
  margin: 25px 50px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

}



.material-symbols-outlined {
  font-size: 60px !important;
}


.cgu__content {
  display: flex;
  color: white;
  margin: 0 300px;

  flex-direction: column;
  align-content: center;
  align-items: center;
  text-align: justify;
}

.cgu__content h1 {
  text-align: center;
  font-size: 35px;

}
.cgu__content h3 {
  text-align: center;
  font-size: 15px;

}
.cgu__content article {
  text-align: center;

}

@media screen and (max-width: 1400px) {
  .cgu__container {

    margin: 25px;
  }

  .cgu__container a {

    display: inline;
    align-items: center;
    text-align: center;
  }

  .cgu__content {
    margin: 35px;
  }

  .cgu__content h1 {
    font-size: 44px;
    margin: 10px;
  }

  .cgu__content article {
    font-size: 14px;

  }
}

/* @media screen and (max-width: 400px) {
  
} */

@media screen and (max-width: 400px) {}

/* ===================================================================
* # IE10/IE11 Specific
*
 * ------------------------------------------------------------------- */

/* ===================================================================
 * # AOS Animations
 *
 * ------------------------------------------------------------------- */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
 * # CTA Button
 *
 * ------------------------------------------------------------------- */
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #b69858;
  color: #fff;
  font-size: 1.6rem;
  text-transform: uppercase;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #333;
}

/* ===================================================================
 * # Responsive Image
 *
 * ------------------------------------------------------------------- */
.responsive-image {
  display: block;
  max-width: 100%;
  height: auto;
}

.responsive-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.responsive-image img[srcset] {
  display: block;
  max-width: 100%;
  height: auto;
}

.responsive-image img[alt] {
  display: block;
  max-width: 100%;
  height: auto;
}

.responsive-image img[src="images/img/Resident/IMG_0069.jpeg"] {
  display: block;
  max-width: 100%;
  height: auto;
}

.responsive-image img[srcset="images/img/Resident/IMG_0069-small.jpeg 600w, images/img/Resident/IMG_0069-medium.jpeg 1200w"] {
  display: block;
  max-width: 100%;
  height: auto;
}

.responsive-image img[sizes="(max-width: 600px) 100vw, 50vw"] {
  display: block;
  max-width: 100%;
  height: auto;
}

.responsive-image img[alt="Tiger"] {
  display: block;
  max-width: 100%;
  height: auto;
}

