/* ==================================================
   Abinci Landing — stylesheet
   filepath: c:\Users\hp\Desktop\Abinci Project\landing page\css\style.css

   ==================================================*/

/* || CSS Resets */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    background-color: #CCCCCC;
    scroll-behavior: smooth;
}

/* Scrollbar Behaviour */
::-webkit-scrollbar{width: 0;}

h1{text-decoration: none;}

img{display: block;}

p{font-family: var(--font-body);}

/* === VARIABLES === */
:root{
  /* Colors */
  --brand-orange: #FE8E01;
  --brand-green: #057A55;
  --bg-light: #F9FAFB;
  --bg-very-light: #FFF8F1;
  --panel-border: #E5E7EB;
  --footer-bg: #374151;
  --muted: #6B7280;
  --black: #000;
  --white: #fff;

  /* Gradients */
  --grad-a: #DEFDEA;
  --grad-b: #FEEAD2;

  /* Fonts */
  --font-sans: 'Montserrat', sans-serif;
  --font-body: 'Figtree', sans-serif;

  /* Radii & spacing */
  --radius-sm: 8px;
  --radius-lg: 32px;

  /* Transitions */
  --ease-default: 0.4s ease;

  /* layout */
  --header-offset: 88px; /* used for scroll-margin to place section top below sticky header */
}

/* || Default Settings (Elements) */
body{
    min-height: 100vh;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    min-width: 320px;
    background: white;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    justify-self: center;
    position: relative;
}

/* Responsive button text sizing */
.button{
  background-color: var(--black);
  color: var(--white);
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-sm);
  text-align: center;
  font-family: var(--font-sans);
  font-size: clamp(14px, 2.4vw, 18px);
}

/* || FUNCTIONAL SETTINGS */
/* To ensure anchored sections start below the sticky header */
section[id],
.section-title,
.hero,
.audience,
.how-it-works,
.why-abinci,
.beyond-delivery,
.our-story{
  scroll-margin-top: var(--header-offset);
}


a,
.nav-links a,
.nav-drawer a,
.footer a{
  color:inherit;
  text-decoration:none;
}

/* || UTILITIES */
.green{
  color: var(--brand-green);
}

.orange{
  color: var(--brand-orange);
}

/* || SECTIONS fORMATTING*/
.section-title h2 {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  z-index: 10;
}

.highlight {
  position: relative;
  z-index: 1;
}

.highlight::after {
  content: "";
  position: absolute;
  top: 50%; /* adjust vertical alignment */
  left: 30%;
  width: 80%;
  height: 20px; 
  background-color: var(--brand-orange);
  z-index: -2;
}

.section-subtitle{
  font-size: 18px;
  font-weight: 500;
}

@media (min-width: 1124px) {
  .section-title h2 {
    font-size: 40px;
  }

  .section-subtitle {
    font-size: 28px;
  }
}

/* || NAVIGATION SECTION */
/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 3000;
  background: var(--white);
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* NAV CONTAINER */
.nav {
  padding: 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  width: auto;
}

/* DESKTOP NAV ITEMS */
.nav-links {
  display: none; /* hidden on mobile */
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--black);
}

.join-btn {
  padding: 8px 16px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: none; /* hidden on mobile */
  font-size: inherit;
  font-family: var(--font-sans);
}

/* MOBILE NAV UI */
.nav-mobile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger-btn {
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-country{
  background-color: #F0FDF4;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}

/* MOBILE OVERLAY */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-default);
  z-index: 2000;
}

/* MOBILE DRAWER MENU */
.nav-drawer {
  position: fixed;
  top: 10%;
  right: -100%; /* hidden off-canvas */
  width: min(280px, calc(100% - 48px));
  max-width: 360px;
  padding: 32px 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: right var(--ease-default);
  z-index: 3001;
  border-radius: var(--radius-sm);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 14px;
}

.nav-drawer hr {
  border: 0;
  border-top: 1px solid #E5E7EB;
}

.drawer-btn {
  background: var(--black);
  color: var(--white);
  padding: 12px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: block;
  text-align: center;
  width: 100%;
  text-decoration: none;
}

/* WHEN MENU IS OPEN */
.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.nav-open .nav-drawer {
  right: 24px;
  top: 10%;
}

/* RESPONSIVE BREAKPOINTS */
@media (min-width: 768px) {
  .nav-open .nav-drawer {
    right: 48px;
}
}

@media (min-width: 1024px) {

  /* NAVIGATION (WEB) */
  .nav {
    padding: 24px 48px;
    position: sticky;
    top: 0;
    z-index: 2000;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }

  .join-btn {
    display: block; /* show on desktop */
  } 

  /* Hide hamburger + country flag wrapper on desktop */
  .nav-elem img[alt="hamburger"] {
    display: none;
  }

  /* Convert mobile nav-bar to desktop inline menu */
  .nav-bar {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    background: transparent;
    padding: 0;
    width: auto;
  }

  .nav-bar hr {
    display: none;
  }

  .nav-bar button {
    padding: 12px 24px;
    background: #333;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
  }

  .nav-mobile {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .nav-drawer,
  .nav-overlay {
    display: none;
  }
}

@media (min-width: 1134px) {
  .nav{
    padding: 24px 96px;
  }
}

/* || HERO SECTION */
.hero{
  display: flex;
  flex-direction: column;
  padding: 96px 24px 48px;
  gap: 48px;
  align-items: center;
}

.hero-main{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-header{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.hero-title h1{
  font-family: var(--font-sans);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  font-size: 24px;
}

.hero-subtitle{
  width: 100%;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 13px;
}

.hero-cta{
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 16px;
  /* background-color: red; */
}

.hero-cta-elem{
  display: flex;
  border: 1px solid var(--black);
  border-radius: var(--radius-sm);
  align-items: center;
  gap: 12px;
  /* flex: 1 1 70px; */
}

.hero-cta-elem-small{
  font-size: 10px;
}

.hero-cta-elem-big{
  font-size: 16px;
  font-weight: 500;
}

.hero-image{
  background-image: linear-gradient(275.99deg, var(--grad-a) 40.29%, var(--grad-b) 95.25%);
  min-width: 300px;
  min-height: 300px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image img{
  object-fit: cover;
  position: absolute;
  width: 310px;
  height: 250.41px;
  left: -12.6px;
  top: 28px;
}

/* || RESPONSIVE BREAKPOINTS */
@media (min-width: 768px) {
    .hero-title h1{
    font-size: 32px;
  }
  
  .hero-subtitle{
    font-size: 16px;
    width: 85%;
  }

  .hero{
    padding: 96px;
  }
}

@media (min-width: 1024px) {
  .hero{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
  }

  .hero-main{
    align-items: flex-start;
  }

  .hero-title{
    width: 100%;
  }

  .hero-title h1{
    text-align: left;
    width: 100%;
  }

  .hero-subtitle{
    width: 95%;
    text-align: left;
  }
  
  .hero-header{
    align-items: flex-start;
  }

  .hero-cta{
    justify-content: flex-start;
    width: auto;
  }

  
}

@media (min-width: 1134px) {
  .hero{
    padding: 96px;
  }
  
  .hero-title h1{
    font-size: 40px;
  }
  
  .hero-subtitle{
    font-size: 18px;
  }
  
  .hero-image{
    min-width: 400px;
    min-height: 400px;
  }

  .hero-image img{
    width: 475.2px;
    height: auto;
    left: -52.6px;
    top: 49.7px;
  }
}


/* || AUDIENCE SECTION*/
.audience{
  background-color: var(--bg-light);
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  font-family: var(--font-body);
}

.card-cont {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
  align-items: center;
}

.card {
  padding: 12px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform var(--ease-default);
  box-sizing: border-box;
  flex: 1 1 180px;
  max-width: 360px;
}

.card:hover {
  transform: translateY(-8px);
}

/* Busy student */
.card.orange {
  background-color: var(--bg-very-light);
  border: 1px solid var(--brand-orange);
}

/* Broke student */
.card.green {
  background-color: #F0FDF4;
  border: 1px solid var(--brand-green);
}

.card-body{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-body h3,
.audience-head h3{
  font-size: 20px;
  font-weight: 600;
}

.card-text{
  color: var(--black);
  font-size: 16px;
}

.card img {
  width: 80%;
  height: auto;
}

/* RESPONSIVE BREAKPOINTS */
@media (min-width: 768px) {
  .card-body h3,
  .audience-head h3{
    font-size: 20px;
  }

  .card-text{
    font-size: 16px;
  }

  .audience{
    padding: 96px;
    gap: 48px;
    /* background-color: red; */
  }

  .card{
    flex: 1 1 calc(45% - 24px);
  }
}

@media (min-width: 1024px) {
  .card-cont {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 48px;
  }
  
  .card:first-child {
    order: 1;
  }
  
  .card:nth-child(2) {
    order: 3;
  }

  .audience-head {
    order: 1; 
    height: 100%;
    place-content: center;
  }
}

@media (min-width: 1134px) {
  .audience{
    padding: 96px;
  }

  .card-body h3,
  .audience-head h3{
    font-size: 24px;
  }

  .card-text{
    font-size: 18px;
  }
}

/* || HOW IT WORKS SECTION */
.how-it-works{
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.how-cont{
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--brand-orange);
  border-radius: 16px;
}

.how-cont hr{
  border: none;
  border-bottom: 1px solid #E5E7EB;
}

.how-item{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how-item img{
  height: 25%;
  max-width: 25%;
}

.how-item h3{
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 2;
}

  .how-item-text p {
    font-size: 14px;
    line-height: 1.4;
  }

.how-dots:nth-of-type(1),
.how-dots:nth-of-type(2),
.how-dots:nth-of-type(3){
  display: none;
}

/* RESPONSIVE BREAKPOINTS */
@media (min-width: 768px) {
  .how-it-works{
    align-items: center;
    padding: 96px;
    gap: 48px;
  }

  .how-cont{
    padding: 48px;
  }
  
  .how-item h3{
    font-size: 20px;
  }
  
  .how-item-text p {
    font-size: 16px;
    line-height: 1.4;
  }

  .how-item img{
    height: 20%;
    max-width: 20%;
  }

}

@media (min-width:1024px) {
    
  .how-it-works {
    align-items: center;
  }

  .how-item{
    width: 33%;
  }
  
  .how-cont hr{
    border: 0;
    border-right: 1px solid #E5E7EB;
  }

  .how-cont {
   flex-direction: row;
   position: relative;
   padding: 96px 48px;
   width: 100%;
   flex: 1;
  }

  .how-dots:nth-of-type(1) {
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 0px;
  }

  .how-dots:nth-of-type(2) {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
  }

  .how-dots:nth-of-type(3) {
    position: absolute;
    bottom: 0px;
    right: 0px;
    display: inline-block;
  }

.how-item{
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1;
}

.how-item:nth-of-type(1) img{
  min-width: 85px;
  height: 112px;
}

.how-item:nth-of-type(2) img{
  min-width: 85px;
  height: 112px;
}

.how-item:nth-of-type(3) img{
  min-width: 112px;
  height: 112px;
}
}

@media (min-width: 1134px) {
  .how-it-works {
    padding: 96px;
  }

  .how-item h3{
    font-size: 24px;
  }

  .how-item-text p {
    font-size: 18px;
  }
}

/* || WHY STUDENT LOVE ABINCI SECTION */
.why-abinci{
  display: flex;
  flex-direction: column;
  padding: 48px 24px;
  gap: 48px;
  align-items: center;
  background-image: linear-gradient(275.99deg, var(--grad-b) 40.29%, var(--grad-a) 95.25%);
}

/* Left section */
.why-abinci-cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* background-color: red; */
}

 .why-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .why-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
  }

.why-card{
  background-color: var(--white);
  padding: 24px 12px;
  border: 16px solid var(--panel-border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: auto;
}

.why-card-item{
  padding: 12px;
  display: flex;
  gap: 4px;
  flex-direction: column;
  border-left: 4px solid var(--brand-green);
}

.why-card-item.active{
  background-color: var(--brand-orange);
  color: var(--white);
}

.why-title{
  font-size: 18px;
  font-weight:600;
}

.why-text{
  font-size: 14px;
  line-height: 1.2;
}

/* || RESPONSIVE BREAKPOINTS */
@media (min-width: 768px) {
  .why-abinci{
    padding: 96px;
  }

  .why-abinci-cont .section-title h2{
    text-align: center;
    width: 100%;
  }

  .why-abinci-cont{
    gap: 48px;
  }
  .why-title{
    font-size:20px;
    line-height: 1.5;
  }
  .why-text{
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .why-abinci {
    flex-direction: row;
    gap: 48px;
    align-items: flex-end;
  }

  .why-abinci-cont .section-title h2{
    text-align: left;
  }

  .why-abinci-cont {
    max-width: 50%;
  }

 .why-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .why-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
  } 
}

@media (min-width: 1134px) {
  .why-abinci{
    padding: 96px;
  }

  .why-abinci-cont{
    gap: 60px;
  }

  .why-card{
    gap: 32px;
  }

  .why-title{
    font-size:24px;
  }
  .why-text{
    font-size: 18px;
  }
}

/* || BEYOND DELIVERY SECTION */
.beyond-delivery{
  padding: 48px 24px;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.beyond-delivery-body{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.beyond-delivery-body p{
  font-family: var(--font-body);
  line-height: 1.4;
  font-size: 16px;
}

.quote{
  border-left: 4px solid var(--brand-orange);
  padding: 8px 12px;
  color: var(--brand-orange);
}

.beyond-delivery-body .quote p{
  font-family: var(--font-sans);
  line-height: 1.4;
  font-size: 14px;
}

.button{
  background-color: var(--black);
  color: var(--white);
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-sm);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
}

.campus-img{
  position: relative;
  min-height: 200px;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
}

.beyond-delivery img{
  position: absolute;
  bottom: -12%;
  width: 100%;
  max-width: 500px;

}

/* || RESPONSIVE BREAKPOINTS */
@media (min-width: 768px) {
  .beyond-delivery{
    padding: 96px 96px 0;
  }

  .campus-img{
    min-height: 300px;
    width: 100%;
    justify-content: flex-end;
  }

  .campus-img img{
    max-width: 600px;
    position: absolute;
    bottom: -18%;
  }

  .beyond-delivery-body p,
  .beyond-delivery-body .quote p{
    font-size: 18px;
  }

}

@media (min-width: 1024px) {
  .beyond-delivery{
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    position: relative;
    min-height: 720px;
  }

.campus-img{
  position: absolute;
  width: 60%;
  overflow: hidden;
  height: 90%;
  bottom: 0;
  right: 0;
}

.campus-img img{
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: contain;
  bottom: -8%;
  right: 0;
  max-width: 800px;
}

.beyond-delivery-body{
  width: 70%;
}

}

@media (min-width: 1134px) {
  .beyond-delivery{
    padding: 96px;
  }

  .beyond-delivery-body p,
  .beyond-delivery-body .quote p{
    font-size: 20px;
  }

  .beyond-delivery-body{
    gap: 24px;
  }

  .button {
    font-size: 16px;
  }
}

/* || OUR STORY SECTION */
.our-story{
  padding: 48px 24px;
  gap: 24px;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-very-light);
}

.our-story-img{
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.our-story img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.our-story-body{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.our-story-body p {
  font-family: var(--font-body);
  line-height: 1.4;
  font-size: 16px;
}

.quote p{
  font-family: var(--font-sans);
  line-height: 1.4;
  font-size: 14px;
}

/* || RESPONSIVE BREAKPOINTS */
@media (min-width: 768px) {
  .our-story{
    padding: 96px;
  }

  .our-story-body p,
  .our-story-body .quote p{
    font-size: 18px;
  }
}

@media (min-width:1024px) {
    .our-story-body-cont{
      display: flex;
      flex-direction: row-reverse;
      align-items: center;
  }

  .our-story-body-cont{
    gap: 24px;
  }
}

@media (min-width: 1134px) {
  .our-story{
    padding: 96px;
  }

  .our-story-img{
    flex: 1;
  }
  
  .our-story-body p,
  .our-story-body .quote p{
    font-size: 20px;
  }

  .our-story-body{
    width: 60%;
  }

  .our-story-body-cont{
    gap: 48px;
  }

  .our-story img{
    width: 100%;
  }

}

/* || FOOTER SECTION*/
.footer{
  background-color: var(--footer-bg);
  color: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.footer-cta .hero-cta-elem{
  border-color: var(--white);
  color: var(--white);
}

.footer hr{
  border:0;
  border-top: 1px solid var(--white);
  width: 100%;
}

.foot-head{
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: red; */
}

.foot-head h2{
  line-height: 2.5;
  font-size: 18px;
  text-align: center;
  font-family: var(--font-sans);
}

.foot-end{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.socials, .support{
  display: flex;
  width: 100%;
  justify-content: center;
}

/* gap: 4px; */
.support {
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 400;
  gap: 4px;
  justify-content: center;
}

.socials{
  gap: 12px;
}

.socials img{
  border: 1px solid var(--white);
  border-radius: var(--radius-sm);
  padding: 8px;
}

.flex-col{
  display: flex;
  align-items: center;
}

.foot-end p{
  font-size: 12px;
  font-family: var(--font-body);
}

/* || RESPONSIVENESS BREAKPOINT*/
@media (min-width:768px) {
  .footer{
    padding: 36px 48px;
    gap: 36px;
  }

  .foot-head h2{
    font-size: 24px;
  }
}

@media (min-width:1024px) {
.footer{
  padding: 48px 96px;
  gap: 48px;
}

.foot-head h2{
  font-size: 32px;
}

.foot-end{
  flex-direction: row;
  width: 100%;
}

.foot-end > *{
  flex: 1;
}

.support{
  justify-content: flex-start;
}

.socials{
  justify-content: center;
}

.copyright{
  display: grid;
  place-items: center end;
}

}


/* CO-PILOT INTERACTIVITY SECTION */

/* === Hover & Focus === */
.nav-links a,
.nav-drawer a,
.hero-cta-elem,
.button,
.join-btn,
.drawer-btn,
.hero-cta-elem .hero-cta-elem-big,
.card,
.socials a img {
  transition: transform var(--ease-default), box-shadow var(--ease-default), opacity var(--ease-default), background-color var(--ease-default);
  -webkit-tap-highlight-color: transparent;
}

/* Primary buttons: subtle lift */
.button,
.join-btn,
.drawer-btn {
  will-change: transform, box-shadow;
  border-radius: 12px;
  padding: 10px 18px;
  background-color: var(--black);
  color: var(--white);
  box-shadow: none;
}

/* Hover: warmer tint and small lift */
.button:hover,
.join-btn:hover,
.drawer-btn:hover,
.button:focus-visible,
.join-btn:focus-visible,
.drawer-btn:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(2,6,23,0.12);
}

/* If primary branded hover desired, use a subtle orange accent on focus */
.join-btn:hover,
.drawer-btn:hover {
  background-color: #111111;
}

/* Hero CTA tiles: soft background tint and lift */
.hero-cta-elem{
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}

.hero-cta-elem:hover,
.hero-cta-elem:focus-visible {
  background-color: rgba(254,142,1,0.06);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(2,6,23,0.06);
}

/* Nav link hover color shift (subtle) */
.nav-links a:hover,
.nav-drawer a:hover {
  color: var(--brand-orange);
}

/* Social icons: scale-up and soften shadow (unchanged) */
.socials a img:hover,
.socials a img:focus-visible {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 8px 18px rgba(2,6,23,0.08);
  border-color: rgba(0,0,0,0.06);
}

/* Cards already lift on hover; ensure smooth transition */
.card { transition: transform var(--ease-default), box-shadow var(--ease-default); }
.card:hover { box-shadow: 0 18px 40px rgba(2,6,23,0.06); }

/* Accessible focus outlines: clear, soft brand tint */
:focus-visible {
  outline: 3px solid rgba(254,142,1,0.14);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .nav-links a,
  .nav-drawer a,
  .hero-cta-elem,
  .button,
  .join-btn,
  .drawer-btn,
  .card,
  .socials a img {
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

/* Transition tuning: faster transforms, lighter shadows */
.nav-links a,
.nav-drawer a,
.hero-cta-elem,
.button,
.join-btn,
.drawer-btn,
.card,
.socials a img {
  transition: transform 180ms cubic-bezier(.2,.9,.2,1), box-shadow 220ms ease, opacity 180ms ease, background-color 200ms ease;
  will-change: transform, box-shadow;
}

/* Unified hover appearance: small lift + light neutral shadow */
.button:hover,
.join-btn:hover,
.drawer-btn:hover,
.hero-cta-elem:hover,
.card:hover,
.socials a img:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 18px rgba(2,6,23,0.06);
}

/* end of stylesheet */

