/* 
  Global CSS Styles
  For Goldsainte Astro Website
*/

:root {
  /* Color Variables */
  --primary-color: #bcaa72;
  --secondary-color: #0c4d47;// #022926;
  --text-color: #333333;
  --text-color-light: #ffffff;
  --background-color: #ffffff;
  --background-color-alt: #f5f5f5;
  --neutral-colors-white: #ffffff;
  --neutral-colors-black: #000000;
  
  /* Font Sizes */
  --font-size-xs: 0.66667rem;    /* 12px * 0.8889 = 10.67px */
  --font-size-sm: 0.77778rem;   /* 14px * 0.8889 = 12.44px */
  --font-size-base: 0.88889rem;     /* 16px * 0.8889 = 14.22px */
  --font-size-md: 1rem;        /* 18px * 0.8889 = 16.00px */
  --font-size-lg: 1.11111rem;    /* 20px * 0.8889 = 17.78px */
  --font-size-xl: 1.33333rem;     /* 24px * 0.8889 = 21.33px */
  --font-size-2xl: 1.55556rem;   /* 28px * 0.8889 = 25.11px */
  --font-size-3xl: 1.77778rem;      /* 32px * 0.8889 = 28.44px */
  --font-size-4xl: 2rem;        /* 36px * 0.8889 = 32.00px */
  --font-size-5xl: 2.22222rem;    /* 40px * 0.8889 = 35.56px */
  --font-size-6xl: 2.66667rem;     /* 48px * 0.8889 = 42.67px */
  --font-size-7xl: 2.88889rem;   /* 52px * 0.8889 = 46.22px */
  --font-size-8xl: 3.11111rem;    /* 56px * 0.8889 = 49.78px */
  --font-size-11xl: 3.11111rem;   /* 56px * 0.8889 = 49.78px */
  --font-size-16xl: 3.55556rem;       /* 64px * 0.8889 = 56.89px */
  --font-size-21xl: 4rem;       /* 72px * 0.8889 = 64.00px */
  --font-size-26xl: 4.44444rem;    /* 80px * 0.8889 = 71.11px */
  --font-size-31xl: 4.88889rem;   /* 88px * 0.8889 = 78.22px */
  --font-size-36xl: 5.33333rem;     /* 96px * 0.8889 = 85.33px */
  --font-size-41xl: 5.77778rem;   /* 104px * 0.8889 = 92.45px */
  --font-size-46xl: 6.22222rem;    /* 112px * 0.8889 = 99.56px */

  /* Spacing */
  --gap-3xs: 0.1875rem;   /* 4px * 0.75 = 3px */
  --gap-2xs: 0.375rem;    /* 8px * 0.75 = 6px */
  --gap-xs: 0.5625rem;    /* 12px * 0.75 = 9px */
  --gap-sm: 0.75rem;       /* 16px * 0.75 = 12px */
  --gap-md: 1.125rem;     /* 24px * 0.75 = 18px */
  --gap-lg: 1.5rem;       /* 32px * 0.75 = 24px */
  --gap-xl: 1.875rem;     /* 40px * 0.75 = 30px */
  --gap-2xl: 2.25rem;      /* 48px * 0.75 = 36px */  
  --gap-3xl: 2.625rem;    /* 56px * 0.75 = 42px */
  --gap-9xl: 3rem;      /* 64px * 0.75 = 48px */
  --gap-16xl: 3.75rem;     /* 80px * 0.75 = 60px */
  --gap-21xl: 4.125rem;    /* 88px * 0.75 = 66px */
  //5rem /* 96px * 0.75 = 72px */
  --gap-26xl: 4.5rem;      /* 104px * 0.75 = 78px */
  --gap-31xl: 4.875rem;    /* 112px * 0.75 = 84px */
  --gap-36xl: 5.25rem;     /* 120px * 0.75 = 90px */


  /* Border Radius */
  --radius-sm: 0.25rem;   /* 4px */
  --radius-md: 0.5rem;    /* 8px */
  --radius-lg: 0.75rem;   /* 12px */
  --radius-xl: 1rem;      /* 16px */

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.05);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Covik Sans', 'DM Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--background-color);
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  font-feature-settings: "liga" off, "clig" off; /* Added for broad application */
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: var(--font-size-6xl);
}

h2 {
  font-size: var(--font-size-5xl);
}

h3 {
  font-size: var(--font-size-4xl);
}

h4 {
  font-size: var(--font-size-3xl);
}

h5 {
  font-size: var(--font-size-2xl);
}

h6 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.website-body .container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem; /* Default padding */
  padding-left: 1rem;  /* Default padding */
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .website-body .container {
    max-width: 540px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .website-body .container {
    max-width: 720px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .website-body .container {
    max-width: 960px;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .website-body .container {
    max-width: 1040px;
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .website-body .container {
    max-width: 1200px;
  }
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

/* New action button style */
.action-button {
  background-color: var(--secondary-color);
  color: var(--neutral-colors-white, #ffffff); /* Ensure white text */
  /* Add other button properties if needed, or rely on .btn for them */
}

.action-button:hover {
  background-color: var(--primary-color); /* Example hover state, can be adjusted */
  color: var(--text-color-light); /* Ensure text remains light on hover */
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-uppercase { /* Added new utility class */
  text-transform: uppercase;
}

.mt-1 { margin-top: var(--gap-xs); }
.mt-2 { margin-top: var(--gap-sm); }
.mt-3 { margin-top: var(--gap-md); }
.mt-4 { margin-top: var(--gap-lg); }
.mt-5 { margin-top: var(--gap-xl); }

.mb-1 { margin-bottom: var(--gap-xs); }
.mb-2 { margin-bottom: var(--gap-sm); }
.mb-3 { margin-bottom: var(--gap-md); }
.mb-4 { margin-bottom: var(--gap-lg); }
.mb-5 { margin-bottom: var(--gap-xl); }

/* Section styling */
.section {
  padding: var(--gap-31xl, 5rem) 0;
}

.top-section{
  margin-top: 70px;
      padding-top: var(--gap-lg);
}

.section-dark {
  background-color: var(--background-color-alt); /* --background-color-alt is #f5f5f5 (very light gray) */
  /* Text color will be inherited (typically dark), suitable for a light background. */
}

/* Responsive */
@media screen and (max-width: 1200px) {
  :root {
    --font-size-26xl: 3.375rem; /* 4.5rem * 0.75 */
    --font-size-21xl: 3rem;   /* 4rem * 0.75 */
  }
}

@media screen and (max-width: 960px) {
  :root {
    --font-size-26xl: 3rem;     /* 4rem * 0.75 */
    --font-size-21xl: 2.625rem; /* 3.5rem * 0.75 */
    --font-size-16xl: 2.25rem;  /* 3rem * 0.75 */
    --font-size-11xl: 2.0625rem;/* 2.75rem * 0.75 */
  }
}

@media screen and (max-width: 768px) {
  :root {
    --font-size-26xl: 2.625rem; /* 3.5rem * 0.75 */
    --font-size-21xl: 2.25rem;  /* 3rem * 0.75 */
    --font-size-16xl: 1.875rem; /* 2.5rem * 0.75 */
    --font-size-11xl: 1.5rem;   /* 2rem * 0.75 */
  }
}

.website-body .section-title {
    color: #022926;
    text-align: center;
    font-feature-settings:
        "liga" off,
        "clig" off;
    font-family: Chiffon;
    font-size: var(--font-size-7xl, 3.5rem);
    font-style: normal;
    font-weight: 400;
    line-height: var (--gap-2xl, 3rem);

    text-transform: uppercase;
}

.website-body .section-lead {
    color: var(--neutral-colors--black, #000);
    max-width: 763px;
    margin: 0 auto;
    text-align: center;
    font-feature-settings:
        "liga" off,
        "clig" off;
    font-family: "Covik Sans";
    font-size: var(--font-size-xl, 1.2rem);
    font-style: normal;
    font-weight: 400;
    line-height: var(--font-size-2xl, 1.2rem);
    margin-top: var(--gap-sm, 3rem);
    margin-bottom: var(--gap-9xl, 3rem);
}

@media screen and (max-width: 768px) {
  .website-body .section-lead {
    font-size: var(--font-size-sm);
    line-height: var(--font-size-xl, 1.2rem);
  }
}

#booking-widget-container{
  background-color: var(--background-color-white, #ffffff);
}

#booking-script-root {
  padding: 0 !important;
}

#booking-script-root .booking-script {
    margin: 15px 7px;
}

#booking-script-root .booking-script .custom-list span,
#booking-script-root .booking-script .custom-list p {
  text-align: left;
}

#ttbs-next-button-pickup-and-dropoff {
  font-family: "Chiffon", sans-serif;
}