*{margin: 0;  padding: 0;text-decoration: none;box-sizing: border-box;list-style: none;} body,html{overflow-x: hidden; overflow-y: scroll; font-family: candara; background-color: black }


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&family=DM+Sans:wght@300;400;500;600&display=swap');


:root {
  /* Brand palette */
  --ink:            #0D0D0D;
  --ink-muted:      #3A3A3A;
  --ink-light:      #6B6560;
  --ink-hairline:   #D4CFC9;
  --ink-rule:       #B8B0A8;
  --paper:          #F9F6F1;
  --paper-warm:     #F2EDE5;
  --paper-off:      #EDE8E0;
  --accent:         #B5261E;      
  --accent-dark:    #7D1914;
  --accent-light:   #F5E5E4;
  --gold:           #9A7B3A;
  --gold-light:     #F6F0E0;

  /* Typography scale */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-serif:     'Source Serif 4', Georgia, serif;
  --font-ui:        'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --col-max:  760px;
  --gap-xs:   0.375rem;
  --gap-sm:   0.75rem;
  --gap-md:   1.25rem;
  --gap-lg:   2.5rem;
  --gap-xl:   4rem;

  /* Transitions */
  --ease:     cubic-bezier(0.25, 0.1, 0.25, 1);
}

nav{
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgb(0, 29, 158); 
  z-index: 9999; 
  box-sizing: border-box;
}


.brand-name{
  display: flex;
  gap: 0;
  top: 10px;
  color: white;
  position: absolute; 
  white-space: nowrap;
  margin-right: auto;
}

.brand-name svg{ font-size: 2rem; flex-shrink: 0;  margin-right: -15px;}



.mid-brand-name{
  font-family: 'Times New Roman';
  font-style: italic;
  font-weight: 600;
  color: gold;
  font-size: 3rem;
  line-height: 1;
  margin-top: 4px;
  

}


.last-brand-name{
  font-family: monospace;
  font-weight:1000;
  font-size: 3rem;
  align-items: center;
  color: white; 
  margin-left: -2px;
}


nav ul{
  float: right;
  margin-right: 25px;  
}

nav ul li{
  display: inline-block;
  line-height: 80px;
  margin: 0 15px;
 
}

nav ul li a{
  position: relative;
  color: white;
  font-size: 15px;
  padding: 5px 0;
  text-transform: uppercase;
  font-weight: bolder;
}

nav ul li a:hover{
  color: yellow;
}

nav ul li a::before{
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s linear;
}


nav ul li a:hover::before{
  transform: scaleX(1);
  transform-origin: left;
}

label #btn,
label #cancel{
  color: rgb(255, 255, 255);
  font-size: 30px;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

#check{
  display: none;
}

.progress-container{
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 2px;
  background:rgba(0,0,0,0.08);
  z-index: 1;
 
}

.progress-bar{
  height: 100%;
  width: 0%;
  background:red;
  transition:width 0.1s ease;
   box-shadow:0 0 10px rgba(0,87,255,0.5);

}


@media (max-width: 1024px) {
  
  nav .brand-name{
   left: unset;
    top: 15px;
     
  }

  nav ul{
    float: right;
    margin-right: 10px;
  }

  nav ul li {
    margin: 0 8px;
  }

  nav ul li a{
      font-size: 10px;
  }
  
}

@media  (max-width: 680px) {
  label #btn{
      display: block;
  }

  .topbar-men ul{
   position: fixed ;
    width: 100%;
    height: 100vh;
    background: rgb(0, 29, 158);
    top: 80px;
    left: -100%;
    text-align: left;
    transition: all .5s;
    z-index: 3;
  }

  nav ul li{
      
      display: block;
      margin: 50px 50px 50px;
      line-height: 30px;
  }

  nav ul li a{
      font-size: 18px;

  }

  #check:checked ~ ul{
      left: 0;
  }

  #check:checked ~  label #btn{
      display: none;
  }

  #check:checked ~ label #cancel{
      display: block;
      
  }
  

}

.dark-toggle-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
     
    }
    .dark-toggle-label {
      font-size: 15px;
      color: inherit;
      opacity: 0.6;
      transition: opacity 0.3s;
      white-space: nowrap;
      color: white;
      font-weight: bold;
      
      margin: 5px 10px;
    }
    .dark-toggle-label.active {
      opacity: 1;
      font-weight: bold;
    }
    .dark-toggle-track {
      position: relative;
      width: 48px;
      height: 26px;
      border-radius: 100px;
      background: #d0cfc6;
      border: none;
      cursor: pointer;
      padding: 0;
      outline: none;
      transition: background 0.35s;
      flex-shrink: 0;
    }
    .dark-toggle-track:focus-visible {
      box-shadow: 0 0 0 3px rgba(83,74,183,0.4);
    }
    body.dark-mode .dark-toggle-track {
      background: #534AB7;
    }
    .dark-toggle-thumb {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #fff;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
    }
    body.dark-mode .dark-toggle-thumb {
      transform: translateX(22px);
    }
    .toggle-icon-sun,
    .toggle-icon-moon {
      position: absolute;
      transition: opacity 0.2s, transform 0.2s;
      color: #888;
      line-height: 1;
    }
    .toggle-icon-sun  { opacity: 1;  transform: scale(1);   }
    .toggle-icon-moon { opacity: 0;  transform: scale(0.6); }
    body.dark-mode .toggle-icon-sun  { opacity: 0;  transform: scale(0.6); }
    body.dark-mode .toggle-icon-moon { opacity: 1;  transform: scale(1); color: #7F77DD; }

     body.dark-mode {
      background-color: #121212;
      color: lightgray;
    }
    
    body.dark-mode nav ul li a {
      color:grey;
    }

    body.dark-mode .mid-brand-name{
      color: gold;
    }

    body.dark-mode .agreement{
      background-color: #0D0D0D;
    }

    body.dark-mode ul li{
      color: lightgray;
    }
    



    body.dark-mode h1{
      color: grey;
    }
    body.dark-mode h2{
      color: green;
    }

    body.dark-mode p{
      color:lightgrey;
    }



    .section-for-footer{
    position: sticky;
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: #121212;
    bottom: 0; 
    min-height: 100vh;
  }

  .section-for-footer p{
    color: grey;
  }

  .footer-brand-name{
    display: flex;
    gap: 0;
    white-space: nowrap;
    margin-right: auto; 
  }

  .footer-brand-name .mid-brand-name{
    font-family: 'Times New Roman';
    font-style: italic;
    font-weight: 600;
    color: gold;
    font-size: 3rem;
    line-height: 1;
    margin-top: 10px; 
  }

  .footer-brand-name svg{ font-size: 2rem; flex-shrink: 0;  margin-right: -12px;}

  .first-content-footer{
    width: 40%;
    margin: 20px;
  }


 .second-content-footer{
  width: 60%;
  display: flex;
  flex-direction: row;
  margin-top: 30px;
 } 

 .second-content-sub-one{
    padding-right:200px;

 }

 .second-content-sub-one ul li a{
  line-height: 40px;
  color: grey;
  margin: 0;
  transition: all 0.3s ease;
  white-space:nowrap;
  
 }



 .second-content-sub-one i{
  margin-right: 5px;
 }

 .second-content-sub-one ul li a:hover{
  color:rgb(0, 140, 255); transform: translateY(-3px);
 }


 
 .footer-more{
  margin: 0;
  color: white;
  flex-direction: column;
  font-weight: bold;
 }

 .footer-more::after{
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, lightblue, rgb(0, 140, 255), purple);
  margin-top: 5px;

 }
 .before-section{
  content: '';
  position: absolute;
  width: 98%;
 
  height: 2px;
  background: linear-gradient(to right, #22d3ee, #a855f7);
 }


 .last-footer-section{
  display: flex;
  flex-direction: row;
  background-color: #121212;
 
 }

 .footer-socials{
  margin: 20px;
  
 }

 .footer-socials  i {
  margin-right: 30px;
  font-size: 1.3rem;
  color: grey;
  transition: all 0.3s ease;
  
 } .footer-socials i:hover{color: white; transform: translateY(-3px);}



 .rights-reserved{
  display:flex;
  gap: 10px;
  margin: 20px;
  font-size: 1rem;
  justify-content: center;
  margin-left:350px ;
  color: #BAC4C8;
 }

 .rights-reserved a{
  color:#BAC4C8 ;
  text-decoration: underline;
  font-weight: bold;
 }

 

 .footer-links{
  display: flex;
  text-align: center;
  gap: 20px;
  margin: 20px;
  margin-left: auto;
 }

 .footer-links a{
  color: #BAC4C8; transition: all 0.3s ease;
 }

 .footer-links a:hover{color: white; }















/* ============================================================
   SECTION WRAPPER
   ============================================================ */
section:not(.topbar-men) {
  padding: var(--gap-xl) 2rem var(--gap-xl);
  animation: fadeUp 0.55s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   AGREEMENT / PRIVACY CONTENT BLOCK
   ============================================================ */
.agreement {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: var(--gap-lg) 3rem var(--gap-xl);
  background: #ffffff;
  border: 1px solid var(--ink-hairline);
  border-top: 4px solid var(--accent);
  position: relative;
}

/* Top decorative rule */
.agreement::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 var(--gap-lg);
}

/* Section label above H1 */
.agreement > p:first-child {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--gap-sm);
}

/* Page Title */
.agreement h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--gap-xs);
}

/* "Last updated" dateline */
.agreement h1 + p {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-light);
  text-transform: uppercase;
  padding-bottom: var(--gap-lg);
  border-bottom: 1px solid var(--ink-hairline);
  margin-bottom: var(--gap-lg);
}

/* ============================================================
   PROSE TYPOGRAPHY
   ============================================================ */
.agreement p {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.82;
  color: var(--ink-muted);
  font-weight: 300;
  margin-bottom: 1.15rem;
}

/* Lead paragraph — first content para after dateline */
.agreement h1 + p + p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink);
  font-weight: 300;
}

/* Headings — H2 (major sections) */
.agreement h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: var(--gap-xl) 0 var(--gap-md);
  padding-top: var(--gap-lg);
  border-top: 1px solid var(--ink-hairline);
  position: relative;
}

.agreement h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 40px;
  height: 3px;
  background: var(--accent);
}

/* H3 */
.agreement h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  margin: var(--gap-lg) 0 var(--gap-sm);
}

/* H4 */
.agreement h4 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin: var(--gap-md) 0 var(--gap-sm);
}

/* Lists */
.agreement ul {
  list-style: none;
  margin: var(--gap-sm) 0 var(--gap-lg);
  padding: 0;
}

.agreement ul li {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-muted);
  font-weight: 300;
  padding: 0.6rem 0 0.6rem 1.6rem;
  border-bottom: 0.5px solid var(--ink-hairline);
  position: relative;
}

.agreement ul li:last-child {
  border-bottom: none;
}

.agreement ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* Nested paragraph within list items */
.agreement ul li p {
  margin-bottom: 0.4rem;
  font-size: 0.975rem;
}

.agreement ul li p:last-child {
  margin-bottom: 0;
}

/* Strong / bold */
.agreement strong {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9em;
  letter-spacing: 0.01em;
}

/* Links */
.agreement a {
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-light);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.agreement a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media(max-width:1024px){
  .section-for-footer {
    flex-direction: column;
  }

  .first-content-footer {
    width: 100%;
    margin: 20px 15px;
  }
 
  .second-content-footer {
    width: 100%;
    flex-direction: row;          /* keep two columns on tablet */
    flex-wrap: wrap;
    margin: 20px ;
    gap: 50px;
  }
 
  .second-content-sub-one {
    padding-right: 30px;          /* was 200px — way too wide */
    margin-bottom: 20px;
  }
 
  /* ---- LAST FOOTER STRIP ---- */
  .last-footer-section {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }
 
  .footer-socials {
    display: flex;
    justify-content: center;
    margin: 10px 0;
  }
 
  .rights-reserved {
    margin-left: auto;            /* was hardcoded 350px */
    margin-right: auto;
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    text-align: center;
  }
 
  .footer-links {
    margin: 10px auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
 
}



/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 860px) {
  .agreement {
    padding: var(--gap-lg) 2rem var(--gap-xl);
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 680px) {
  

  /* Content */
  section:not(.topbar-men) {
    padding: var(--gap-lg) 1rem var(--gap-xl);
  }

  .agreement {
    padding: var(--gap-lg) 1.25rem var(--gap-xl);
    border-left: none;
    border-right: none;
    border-top-width: 4px;
  }

  .agreement h1 {
    font-size: 1.8rem;
  }

  .agreement h2 {
    font-size: 1.25rem;
  }
  .section-for-footer{ 
    flex-direction: column;
  }

  .first-content-footer{
    width: fit-content;
  }

  .second-content-footer{
    width: 100%;margin:20px; flex-direction: column;
  }
  .second-content-sub-one{margin-bottom: 30px;}

  .last-footer-section{display: flex; flex-direction: column;}

  .footer-socials{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rights-reserved{
   margin: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    margin:40px 10px  ;
    gap: 20px;
    white-space: nowrap;
   
  }


}


@media(max-width:480px){

  .rights-reserved{
   margin: 2px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    font-size: small;
  }

  .footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    margin:40px 10px  ;
    gap: 20px;
    white-space: nowrap;
    font-size: small;
   
  }

}
