/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;  
}

body {
    font-family: "museo-sans", 'ABeeZee', sans-serif;
    padding-top: 80px;
    line-height: 1.6;
}

:root {
  --color-primary: #5931A6;
  --color-primary-light: #7c3aed;
  --color-primary-dark: #2E195C;
  --color-secondary: #FFCE48;
  --color-secondary-dark: #FFBA20;
  --color-accent: #7A310D;

   --bg-white: #ffffff;
  --bg-light-purple: #f3f0ff;
  --bg-card-yellow: #FFF2C6;
  --bg-card-purple: #DFDAFA;
  --bg-card-blue: #F0FDFB;
  --bg-card-pink: #FFF4FF;
  --bg-gray-light: #f3f4f6;

   --text-primary: #2E195C;
  --text-white: #FFF;
  --text-gray: #666;
  --text-placeholder: #aaa;
  --text-yellow-dark: #7A310D;
  --text-purple-dark: #4B2A88;
  --text-blue-dark: #124D4F;
  --text-pink-dark: #741B6C;
  --text-contact: #8361E4;

  --font-primary: 'museo-sans-rounded', sans-serif;
  --font-secondary: 'ABeeZee', sans-serif;

  --font-size-hero: 56px;
  --font-size-h2: 48px;
  --font-size-h3: 2rem;
  --font-size-base: 1rem;
  --font-size-large: 1.21556rem;
  --font-size-small: 0.875rem;
  --font-size-member: 1.25rem;
  --font-size-contact: 3rem;
  
  /* font size */
  --font-size-hero-tablet: 48px;
  --font-size-hero-mobile: 32px;
  --font-size-h2-tablet: 48px;
  --font-size-h2-mobile: 36px;
  
  /* spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  
  /* border radius */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 32px;
  --border-radius-round: 50%;
  --border-radius-card: 3.34281rem;
  
  /* shadow */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-button: 0 4px 15px rgba(251, 191, 36, 0.3);
  --shadow-button-hover: 0 6px 20px rgba(251, 191, 36, 0.4);
  --shadow-purple-button: 0 4px 15px rgba(102, 126, 234, 0.3);
  --shadow-purple-button-hover: 0 6px 20px rgba(102, 126, 234, 0.4);
  
  /* transition */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  
  /* line height */
  --line-height-tight: 120%;
  --line-height-normal: 130%;
  --line-height-relaxed: 150%;
  
  /* letter spacing */
  --letter-spacing-tight: -0.32px;
  --letter-spacing-normal: -0.4px;
  --letter-spacing-wide: -0.96px;
  
  /* border */
  --border-width: 1.5px;
  --border-style: solid;
  
  /* container width */
  --container-max-width: 1200px;
  --header-height: 80px;
  --mobile-menu-width: 300px;
}

/* Header styles */
header {
    background-color:var(--bg-white);
    box-shadow: var(--shadow-light);
    padding: 1rem 3.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    height:var(--header-height);
}

/* Logo container */

#logoContainer {
   flex:1;
}

#logoContainer a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

#logo {
    height: 40px;
    width: auto;
}

.navContainer {
    flex:1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position:relative;
    gap: var(--spacing-md);
}

.navContainer > .btn-primary,
.navContainer > .btn-secondary {
  flex-shrink: 0; 
}


#menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xs);
    margin-right: 20px;
}

#menu li a {
    text-decoration: none;
    color:var(--text-primary);
    font-weight: 400;
    font-size: var(--font-size-base);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
    font-family: var(--font-secondary);
}

#menu li a:hover {
    color: var(--color-primary-light);
    background-color: var(--bg-gray-light);
}


/* Primary button (View Proposal) */
.btn-primary {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0.75rem var(--spacing-lg);
  border-radius: 12px;
  font-size: var(--font-size-base);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'ABeeZee';
  text-decoration: none;
  display: inline-block;
  min-width: 160px;
  text-align: center;
}

/* Secondary button (View Figma) */
.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 0.65rem var(--spacing-lg);
  border-radius: 12px;
  font-size: var(--font-size-base);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'ABeeZee';
  text-decoration: none;
  display: inline-block;
  min-width: 160px;
  text-align: center;
}

.btn-secondary:hover, .btn-primary:hover  {
  background-color: var(--color-primary-light);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}


/* Mobile toggle button */
#toggleButton {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#toggleButton:hover {
    background-color: var(--bg-gray-light);
    color: var(--color-primary-light);
}

/* Visually hidden utility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}




/* hero */
#hero {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem 0 0 64px;
    background: var(--bg-light-purple);
    justify-content: space-between;
    height: auto;
    margin-top:-10px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap:25px;
    max-width: 500px;
}

.hero-title {
    color: var(--color-primary);
    font-family:   var(--font-primary);
    font-weight: 800;
    font-size: 56px;
    line-height: var(--line-height-tight); 
    letter-spacing:  var(--letter-spacing-tight);
}

.hero-text {
    color: var(--color-primary);
    font-family: var(--font-secondary);
    font-size: 16px ;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; 
    letter-spacing: var(--letter-spacing-normal);
    align-self: stretch;
}

.projectproposal {
    display: inline-block;
    background: var(--color-secondary);
    padding: 16px 24px;
    text-decoration: none;
    box-shadow: var(--shadow-button);
    border-radius: 12px;
    border:  var(--border-width) var(--border-style) var(--color-secondary-dark);
    transition: all 0.3s ease;
    color:   var(--color-accent);
    font-family:  var(--font-primary);
    font-size: var(--font--size--base);
    font-style: normal;
    font-weight: 700;
    line-height: var(--line-height-normal); /* 22.5px */
    letter-spacing: -0.54px var(--letter-spacing-normal);
}

.projectproposal:hover {
    transform: translateY(-2px);
    box-shadow:  var(--shadow-button-hover) rgba(251, 191, 36, 0.4);
}

.Hero-img {
    object-fit: cover;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex:1;
    padding-right:0;
}

.Hero-img img {
    width: 100%;
    height: auto;
    max-width: 700px;
    object-fit: contain;
    margin-left: auto;
}




/* Features Section */
#features {
    padding: var(--spacing-3xl);
    background: var(--bg-white);
    margin:  0 auto;
    position: relative;
    z-index: 10;
    width: 100%;
}

#features h2 {
     font-family: var(--font-primary);
    font-size: var(--font-size-h2);
    color: var(--color-primary);
    text-align: center;
    margin: var(--spacing-md) auto var(--spacing-2xl) auto;
    letter-spacing: var(--letter-spacing-wide);
}

.features-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3.5rem;
    max-width: var(--container-max-width);
    height:auto;
    margin: var(--spacing-2xl) auto;
}

.features-wrapper {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
    height: 100%;
}

.features-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}


#features .features-grid .card-1,.card-2, .card-4,.card-5{
        grid-column: span 3;
    }

#features .features-grid .card-3 {
        grid-column: span 6;
    }

/* Card 1 - Mascot Engagement (Yellow) Card 5 - Interactive Play */
.card-1,.card-5{
    background: var(--bg-card-yellow);
}

.card-1 h3, .card-5 h3, .card-1 p,.card-5 p{
    color: var(--text-yellow-dark);
}

/* Card 2 - Interactive Learning (Purple) */
.card-2{
    background: var(--bg-card-purple);
}

.card-2 h3, .card-2 p{
    color: var(--text-purple-dark);
}

/* Card 3 - Mood Tagging (Light Blue) */
.card-3 {
    background: var(--bg-card-blue);
    grid-column: span 2;
    display: grid;
    grid-template-columns: 3fr 4fr;
    border-radius: 3.34281rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    align-items: center;
}

.card-3 h3, .card-3 p{
   color:var(--text-blue-dark);
}

/* Card 4 - Parent Portal */
.card-4 {
    background: var(--bg-card-pink);
}

.card-4 h3,.card-4 p{
   color: var(--text-pink-dark);
}


.feature-text {
    padding: 3rem 2rem 1rem 2rem;
    flex: 1;
}

.feature-text h3 {
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: var(--line-height-tight); 
    letter-spacing: -0.04863rem;
}

.feature-text p {
    font-family: var(--font-secondary);
    font-size: 1.21556rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 1.82338rem */
    letter-spacing: -0.02431rem;
}

.feature-card-wrapper {
    padding: 0 2.5rem 0 2.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.feature-card-wrapper-5{
    padding: 0  2rem 1rem 2rem ;
    display: flex;
    justify-content: center;
    align-items: center;
    flex:1;
}

.card-5{
    display:grid;
    grid-template-rows: 1fr 2fr;
}

.feature-card-wrapper-3{
    padding:0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-main-image {
    max-width:90%;
    height: auto;
    width:auto;
    object-fit: contain;
}

.feature-main-image-1{
    object-fit: contain;
    height:auto;
    max-width:100%;
}
.feature-main-image-3{
    object-fit: cover; 
    height: 100%;    
    width: 100%;      
    min-height: 100%;
}

.feature-main-image-5{
    max-width:100%;
    height: auto;
    width:auto;
    object-fit: contain;
}

/* video */
#video{
    padding:100px 0;
    background: #DFDAFA;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    gap:30px;
    }

#video h2{
    text-align: center;
    /* margin:3.5rem auto; */
    color: var(--color-primary);
    font-family:var(--font-primary);
    font-size: 48px;
    font-style: normal;
    line-height: 120%; 
    letter-spacing: -0.96px;
    margin-bottom:20px;
}

video {
    border-radius: 32px; 
    display: flex;
    justify-content: center;
    max-width: calc(100% - 400px); 
    width: 100%;
   
}


/* team */
#team{
    background: #2E195C;
    text-align: center;
    padding: 4rem 64px;
    
}

#team h2{
    text-align: center;
    margin:3.5rem auto;
    color: #FFF;
    font-family:  'museo-sans-rounded', sans-serif;
    font-size: 48px;
    font-style: normal;
    line-height: 120%; 
    letter-spacing: -0.96px;
}


.team-grid {
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    gap: 50px;
    align-items: center;
    color: white;
    /* max-width: 1200px; */
    margin: 50px 50px 80px 50px;
}

.team-img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.description {
    padding: 0 30px;
}

.description p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.96;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: left;
    transition: opacity 0.3s ease;
}

.team-image {
    max-width: 200%;
    height: auto;
    max-height: 250px;
    transition: transform 0.3s ease;
}


#member{
    display: grid;
    grid-template-columns:  repeat(5, 1fr);
    gap: 20px;
    justify-items: center;
    margin: 0 auto;
   
}

.member-info{
    padding: 30px 20px;
    text-align: center;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.member-info img {
    width: 200px;
    height: 200px;
    margin-bottom: .25rem;
    object-fit: cover;
    border:0.2rem solid #FFF;
    padding: 0.5em;
    border-radius: 50%;

}


.member-info h3{
    text-align: center;
    margin:1rem auto auto auto;
    font-weight: 400;
    height: 3.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: ABeeZee;
    font-size: 1.25rem;
    font-style: normal;
    line-height: 120%; /* 1.5rem */
    letter-spacing: -0.025rem;
}

.member-info p {
    font-size: 0.95rem;
    margin-bottom: auto;
    height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-align: center;
    font-family: ABeeZee;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 1.125rem */
    letter-spacing: -0.01875rem;
    margin-bottom: 10px;
}

.links a{
    margin-top: 30px;
    color:#FFF;
}

/* contact */
#contact {
    display: flex;
    background: #FFF;
    padding:4rem 0;
    justify-content: space-evenly;
    align-items: center;

}

.form-wrapper {
    width: 100%;
    /* max-width: 400px; */
    margin: 0 auto;
}

.contactleft h2 {
    text-align: center;
    color:var(--text-contact);
    font-family:  var(--font-primary);
    font-size: var(--font-size-h2);
    font-style: normal;
    font-weight: 700;
    line-height: 120%; 
    letter-spacing: -0.06rem;
}

.contactleft {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    align-self: stretch;
    max-width: 500px;
    flex: 1; 
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}


.name-wrapper,
.email-wrapper,
.message-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Label styles */
label {
    color:  #000;
    font-family:  'museo-sans-rounded', sans-serif;
    font-size:  0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; 
    letter-spacing: -0.02625rem;
}

/* Input and textarea styles */
input[type="text"],
textarea {
    padding: 15px 20px;
    border: 1px solid #aaa;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
    color:  rgba(0, 0, 0, 0.60);
    font-family: ABeeZee;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 1.3125rem */
    letter-spacing: -0.00875rem;
}


input[type="text"]:focus,
textarea:focus {
    outline: none;
    border-color: #aaa;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 154, 86, 0.1);
}

input[type="text"]::placeholder,
textarea::placeholder {
    color: #aaa;
    font-family: ABeeZee;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 1.3125rem */
    letter-spacing: -0.00875rem;
}

/* Textarea specific */
textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

/* Button wrapper */
.button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Submit button */
.submit-button {
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow:  var(--shadow-button);
    border-radius: 0.75rem;
    border: 1.5px solid  var(--color-secondary-dark);
    background: var(--color-secondary);
    display: flex;
    width: 14.375rem;
    height: 3.4375rem;
    padding: 1rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-accent);
    font-family:  var(--font-primary);
    font-size:  1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: var(--line-height-normal); 
    letter-spacing:  var(--letter-spacing-normal);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow:  var(--shadow-button-hover);
}

.submit-button:active {
    transform: translateY(0);
}

 /* Required field indicator */
label[required]::after {
    content: " *";
    color: #aaa ;
}

.contactright{
    display:flex;
    justify-content: center;
    max-width: 500px;
}
.contactright img{
    max-width:100%;
    height: auto;
    width:auto;
    object-fit: contain;
}

/* footer */
footer {
    padding:  20px 50px;
    display: flex;
    text-align: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius:  var(--border-radius-xl) var(--border-radius-xl) 0px 0px;
    background:  var(--color-primary) ;
    align-items: center;
}

.footer-logo{
     justify-content: center;
}

footer small{
    color: #FFF ;
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-tight); 
    letter-spacing: var(--letter-spacing-tight);
}

/* responsive */
@media (min-width: 1025px) and (max-width: 1350px) {

    /* Team Section */
    #member {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    } 
}

@media (max-width: 1200px) {
    .team-grid {
        max-width: 100%;
        margin: 0 20px;
        grid-gap: 30px;
        padding: 50px 40px;
    }
}

@media (max-width: 1002px) and (min-width: 800px) {
   #hero {
       padding: 2.5rem 0 0 2rem;
       gap: 1.5rem;
   }
   
   .Hero-img {
       justify-content: center;
       padding-right: 0;
   }
   
   .Hero-img img {
       max-width: 600px;
       
   }
}
@media (max-width: 1024px) {
    /* Header & Navigation */
    header {
        padding: 2rem;
    }
    
    .navContainer {
        position: fixed;
        top: 0;
        right: -300%;
        width: 100%;
        background: var(--bg-white);
        z-index: 1000;
        transition: right 0.3s ease;
        padding: 6rem 2rem 2rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #menu {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        text-align: center;
        margin-bottom: 2.5rem;
    }

    #menu li a {
        font-size: 1.2rem;
        padding: 1rem 0;
        display: block;
        border-bottom: 1px solid #eee;
    }
    
    .navContainer.active {
        right: 0;
    }
    
    #toggleButton {
        display: block;
    }

    /* Mobile Menu Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-slow);
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Close Button */
    .navContainer::before {
        content: '✕';
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        color: var(--text-gray);
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--border-radius-round);
        background: #f5f5f5;
    }

    .btn-primary{
        margin-bottom: 10px;
    }

    /* Hero Section */
    #hero {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 0 0 1rem;
    }
    .hero-content {
    align-items: center;
    }
    .hero-title {
    font-size: var(--font-size-hero-tablet);
    }

    /* Features Section */
    #features h2 {
        font-size: var(--font-size-h2-tablet); 
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .card-3 {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    /* Contact Section */
    #contact {
        display: flex;
        flex-direction: column-reverse;
        gap: 4rem;
        padding: 4rem 1rem;
    }

    .contactleft {
        width: 100%; 
        max-width: 500px; 
        margin: 0 auto;
    }
    
    .form-wrapper {
        margin: 0 auto; 
    }  

    /* Team Section */
    #member {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    } 

    /* Video Section */
    #video {
        padding: 80px 0;
    }
    
    video {
        max-width: calc(100% - 32px);
    }

    .team-grid {
        grid-template-columns: 1fr;
        grid-gap: 25px;
        padding: 45px 35px;
    }
    
    .description {
        padding: 0 20px;
    }
    
    .description p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .description p:first-child {
        font-size: 17px;
    }
}

/* ===================================
   MOBILE SCREENS (768px)
   =================================== */
@media (max-width: 768px) {
    /* hero */
    #hero {
        flex-direction: column;
        text-align: center; 
        padding: 2.5rem 0 0 1rem;
    }

    .hero-content {
       align-items: center;
   }
   
   .hero-title {
       font-size: var(--font-size-hero-tablet);
   }

    /* Features Section */
    #features {
        padding: 4rem 2rem;
    }

    .card-5 {
        display: grid;
        grid-template-rows: 1fr 1fr;
    }

    .feature-card-wrapper-5 {
        padding: 1rem 2rem;
    }

    /* Team Section */
    #member {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Footer */
    footer {
        display: grid;
        text-align: center;
        justify-content: center;
        gap: 1rem;
    }

    .footer-logo a {
        justify-content: center;
    }

    /* team description */
     .description {
        grid-row: 2;
        padding: 0;
        text-align: center;
    }

    .team-img {
        padding: 15px;
    }
    
    
    .description p {
        font-size: 16px;
        margin-bottom: 18px;
        line-height: 1.7;
    }
}

/* ===================================
   SMALL MOBILE SCREENS (550px)
   =================================== */
@media (max-width: 550px) {
    
    /* Typography */
    .hero-title {
        font-size: var(--font-size-hero-mobile);  
    }
    
    #features h2 {
        font-size: var(--font-size-h2-mobile); 
    }

    #team h2 {
        font-size: var(--font-size-h2-mobile); 
    }

    #contact{
        padding: 3rem;
    }

    .contactleft h2 {
    font-size: var(--font-size-h2-mobile); 
 
}

#team{
    padding:2rem 25px;
}
    .team-grid {
        grid-gap: 25px;
        padding: 35px 20px;
        margin: 0 10px;
    }

 .description p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
}

@media (max-width: 390px) {
     footer small{
    font-size: 0.85rem;

 }

}