

body {
font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
 scroll-behavior: smooth;
  transition: all .9s ease;

 
}

html{
  scroll-behavior: smooth;
}

@keyframes fadeIn {
  from{
    opacity: 0;
    transform: translateY(20px);
  }

  to{
    opacity: 1;
    transform: translateY(0);
  }
  
}



/*===============================navbar===================================*/
/* Base Styles */
:root {
    --primary-color: #e74c3c; /* Chef red accent */
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --transition: all 0.3s ease;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

/* Navigation Links */
#nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

#nav-links li a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

#nav-links li a:hover {
    color: var(--primary-color);
}

#nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

#nav-links li a:hover::after {
    width: 100%;
}

/* Social Icons */
.nav__socials {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.nav__socials li a {
    color: var(--dark-color);
    font-size: 1.3rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav__socials li a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-color);
    transition: var(--transition);
    transform-origin: left center;
}

/* Active State for Mobile Menu */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    #nav-links {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    #nav-links, .nav__socials {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }
    
    #nav-links {
        padding-top: 80px;
    }
    
    .nav__socials {
        padding-bottom: 40px;
        flex-direction: row;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    #nav-links.active, .nav__socials.active {
        right: 0;
    }
    
    #nav-links li a {
        font-size: 1.2rem;
    }
}

/* Animation for Mobile Menu */
@keyframes slideIn {
    from {
        right: -100%;
    }
    to {
        right: 0;
    }
}

@keyframes slideOut {
    from {
        right: 0;
    }
    to {
        right: -100%;
    }
}


/* Banner Styles */
.banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -70px; /* To account for fixed navbar */
    padding-top: 70px; /* Push content below navbar */
}

.banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

/* Overlay effect */
.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.7) 0%, 
                rgba(0, 0, 0, 0.3) 50%,
                rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

/* Typing container */
.typing-container {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.typing-container h1 {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat', sans-serif;
}

/* Typing cursor */
.cursor {
    display: inline-block;
    width: 3px;
    height: 4rem;
    background-color: #e74c3c;
    margin-left: 5px;
    animation: blink 0.8s infinite;
    vertical-align: middle;
}

/* Scroll indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Animations */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .typing-container h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .banner {
        min-height: 500px;
    }
    
    .typing-container h1 {
        font-size: 2.2rem;
    }
    
    .cursor {
        height: 2.5rem;
    }
}

@media (max-width: 480px) {
    .typing-container h1 {
        font-size: 1.8rem;
    }
    
    .scroll-down {
        font-size: 1.2rem;
    }
}

 

.wrapper {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  perspective: 10px;
}

#more {
  display: none;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}



/*================================banner===========================================*/


/*======================About-Section===================*/
.more__text {
  display: none;
  transition: all 0.3s ease-in-out;
}

.read-more {
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
}

.about-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #000000;
}

/*======================Container===================*/
.container {
  max-width: 1200px;
  margin: auto;
}

/*=======================Glass effect card===============================*/
.glass-card {
  background: rgb(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  overflow: hidden;
  padding: 50px;
  animation: slideFadeIn 1.5s ease forwards;
}

/*========================================Grid=========================================*/
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 50px;
}

/*==========================================Image================================================*/
.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 2s ease forwards;
}

/*=========================================Text content==============================================*/
.about-content h1 {
  font-size: 56px;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 600;
  animation: fadeIn 2s ease forwards;
}

.about-content p {
  font-size: 18px;
  color: #000000;
  margin-bottom: 40px;
  animation: fadeIn 2s ease forwards;
}

/*========================================Button==========================================*/
.btn {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(to right, #111, #555);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s ease;
  font-size: 16px;
}

.btn:hover {
  background: linear-gradient(to right, #555, #111);
  transform: translateY(-5px);
}

.about-content {
  flex: 1 1 55%;
}

.about-content h2 {
  font-size: 2rem;
  color: #bf3e2f;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.about-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

button#myBtn,
.resume-btn {
  background-color: #bf3e2f;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

button#myBtn:hover,
.resume-btn:hover {
  background-color: #a83224;
}

/*=================================Read More toggle===========================*/
#more {
  display: none;
}

/*===================================Animations=======================*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(70px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/*============================Responsive======================================*/
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    margin: 0 auto;
  }

  .about-content h1 {
    font-size: 42px;
  }
}

/*==================================section-recipes====================================*/
.recipe-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #fdfbfb, #ebedee);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.recipe-section h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.recipe-section h2::after {
  content: "";
  display: block;
  height: 4px;
  width: 50px;
  background-color: #ffffff;
  margin: 10px auto 0;
  border-radius: 2px;
}

iframe {
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

/*=========================================Slideshow======================================*/
.slideshow-container {
  max-width: 900px;
  margin: auto;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.mySlide {
  display: none;
}

.mySlide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.caption {
  background-color: #ffffff;
  padding: 20px;
  color: #333;
  text-align: left;
  border-top: 1px solid #f0f0f0;
}

.caption h3 {
  font-size: 24px;
  margin: 0 0 10px;
}

.caption p {
  font-size: 16px;
  color: #555;
}

/*================================Navigation Arrows===============================*/
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 12px;
  background-color: rgb(255, 255, 255);
  color: rgb(255, 0, 0);
  font-size: 20px;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  user-select: none;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.prev:hover,
.next:hover {
  background-color: rgba(192, 12, 12, 0.6);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Dots */
.dot-container {
  text-align: center;
  padding-top: 15px;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s;
}

.dot.active,
.dot:hover {
  background-color: #f76c6c;
}

/*=================================menoring===========================================*/

.coarching {
  background-color: rgb(0, 0, 0);
  height: auto;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.mentoring-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 3rem 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  margin: 4rem auto;
  max-width: 1200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mentoring__image {
  flex: 1 1 40%;
  min-width: 280px;
}

.mentoring__image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 400px;
}

.mentoring__content {
  flex: 1 1 55%;
  min-width: 280px;
}

.mentoring__content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #bf3e2f;
}

.mentoring__content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #bf3e2f;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #a33225;
}

.chef-offerings-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.chef-offerings-section h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 40px;
  color: #ffffff;
  animation: fadeIn 1s ease forwards;
}

/* Offerings Grid */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.offering-card {
  background: #ffffff;

  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.offering-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.offering-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #111;
}

.offering-card p {
  font-size: 16px;
  color: #555;
}

/* Philosophy and Call to Action */
.philosophy,
.call-to-action {
  background: #f7f7f7;
text-align: center;
  backdrop-filter: blur(10px);
  padding: 40px;
  margin-top: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.philosophy h4,
.call-to-action h4,
.contact-form h4 {
  font-size: 28px;
  color: #000000;
  margin-bottom: 20px;
}

.philosophy p,
.call-to-action p,
.contact-form p {
  font-size: 17px;
  color: #000000;
  margin-bottom: 15px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*============================================PORTFOLIO=============================================*/
.image-container {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

/* Visible state when scrolled into view */
.image-container.show {
  opacity: 1;
  transform: translateY(0);
}

/* Bonus: If you want even more effect */
.image-container.zoom {
  transform: scale(1.8);
}

.image-container.show.zoom {
  transform: scale(1);
}

.portfolio {
  background-color: #fff;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 4em;
  color: #000;
}

.portfolio h2 {
  font-size: 2.7rem;
  font-weight: 200;
  margin-bottom: -3rem;
}

.portfolio h1 {
  font-size: 4rem;
}

.tabs {
  display: flex;
  cursor: pointer;
  margin-bottom: 20px;
  border: 1px solid black;
  border-radius: 10px;
  background-color: black;
}

.tab {
  flex: 1;
  padding: 15px;
  background-color: transparent;
  text-align: center;
  border-bottom: none;
  border-radius: 10px;
  color: #fff;
  width: 190px;
  height: 20px;
  transition: background-color 0.1s;
}

.tab:hover {
  background-color: #ff0000;
}

.tab.active {
  background-color: rgb(255, 0, 0);
  color: #fff;
}

.tab-content {
  border: 1px solid #ffffff;
  background-color: white;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.content {
  display: none;
}

.content.active {
  --gap: 1px;
  --num-cols: 5;
  --row-height: 300px;
  box-sizing: border-box;
  padding: var(--gap);
  padding-bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(var(--num-cols), 1fr);
  grid-auto-rows: var(--row-height);
  gap: var(--gap);
}

.content.active img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container {
  position: relative;
  display: inline-block;
}

.responsive-image {
  width: 320px;
  height: 300px;
  transition: all 1s ease;
}

.responsive-image:hover {
  background-color: #000000;
}

.overlay-text {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 16px;
}

/*===================footer-content======================*/
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  color: #fff;
}

.header {
  text-align: center;
  padding: 20px;
}

.header input {
  width: 100%;
  max-width: 300px;  
  padding: 10px;
  margin: 10px 0;
}

.header button {
  padding: 10px 20px;
  background-color: #fff;
  color: #000;
  border: none;
  cursor: pointer;
}

/*====================footer=====================*/
.gordon-footer {
  background-color: #ffffff;
  color: #fff;
  font-family: 'Arial', sans-serif;
  padding: 40px 20px 20px;

}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  width: 80px;
  margin-bottom: 20px;
}

.footer-nav {
  margin-bottom: 20px;
}

.footer-nav a {
  color: #000000;
  margin: 0 15px;
  text-decoration: none;
  font-size: 1.4em;
}

.footer-nav a:hover {
  color: red;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 0.9em;
}

.footer-bottom {
  border-top: 1px solid #000000;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 0.8em;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.socials{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.icon{
    color: black;
    font-size: 1.2rem;
    transition: all .9s ease;
}

.icon:hover{
    color: red;
}
@media (min-width: 600px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-logo,
  .footer-nav,
  .footer-contact {
    flex: 1;
    margin: 10px 20px;
  }

  .footer-nav {
    margin-bottom: 0;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    gap: 20px;
    padding: 15px 20px 0;
  }
}

@media (max-width: 599px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-nav a {
    display: block;
    margin: 8px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
/*=============================break points=================================*/
@media (max-width: 1070px){
  .tabs{
    width: 90%;
  }

  .about-section{
    width: 100%;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .glass-card{
    width: 90%;
  }

  .mentoring-section{
    width: 90%;
  }

   .footer-container {
            max-width: 1070px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

}
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-content h1 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .about-content .btn {
    font-size: 0.95rem;
  }

  .content.active {
    height: auto;
  }

 
 

}


@media (max-width: 1000px) {
  .tabs {
    width: 90%;
  }

  .mentoring-section {

    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
  }

 


  .philosophy,
  .call-to-action,
  .contact-form {
    padding: 20px;
  }

 
/*======================portfolio section==================*/
  .portfolio h1 {
    font-size: 2.25rem;
  }

.portfolio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }



  .portfolio h2 {
    font-size: 2rem;
    margin-bottom: 5px;
  }

  .content.active {
    --gap: 1px;
    --num-cols: 3;
    --row-height: 300px;
    box-sizing: border-box;
    padding: var(--gap);
    padding-bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: var(--row-height);
    gap: var(--gap);
  }

  .container {
    max-width: 800px;
    margin: auto;
  }

  .offerings-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 30px;
    margin-bottom: 60px;
  }

  .about-section {
    width: 100%;
    padding: 50px 0px;
    background-color: #000000;
  }

  /*=================hamburger-menu=================*/
 
}


/*==============@media 990px====================*/
@media (max-width: 990px){


  .portfolio h1{
    margin-top: -10px;
  }
 
  


 .mentoring__content{
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
 }

 .about-content{
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
 }

}

@media (max-width: 890px){




.glass-card{
    width: 80%;
}
.footer{
  display: flex;
  flex-direction: column;
}

.footer-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



  
}

/*=============tablet-to-small-devices===============*/
@media (max-width: 768px) {


  .glass-card{
    width: 70%;
  }
 


  .about-section {
    padding: 30px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-content h1 {
    font-size: 1.75rem;
  }

  .about-content p {
    font-size: 0.9rem;
  }

  .about-content .btn {
    padding: 8px 18px;
  }

   video {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
  }


  .philosophy {
    text-align: center;
  }

  .chef-offerings-section h2 {
    font-size: 1rem;
    margin-top: -2.5rem;
  }

  .mentoring__content h2 {
    font-size: 1.5rem;
  }

  .call-to-action {
    text-align: center;
  }

  .mySlide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .tabs {
    width: 100%;
    padding: 0 1rem;
  }

  .portfolio h1 {
    margin-top: -10px;
  }

  .tabs {
    width: 90%;
  }

  

  .content.active {
    --gap: 2px;
    --num-cols: 3;
    --row-height: 300px;
    box-sizing: border-box;
    padding: var(--gap);
    padding-bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: var(--row-height);
    gap: var(--gap);
  }


/*======================footer=================*/
.footer-container {
grid-template-columns: 1fr;
}
.footer-newsletter input{
width: 90%;
}

}

@media (max-width: 690px) {
.about__me h1 {
    font-size: 1.2rem;
  }

  /*===============portfolio-section===============*/
  .portfolio h1 {
    font-size: 1.5em;
  }

  .tabs {
    width: 90%;
    font-size: 10px;
  }


  .content.active {
    display: grid;
    grid-template-columns: auto;
    gap: var(--gap);
  }

  .portfolio {
    height: auto;
  }




  .slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: center;
  }

  .tabs {
    width: 90%;
  }

  .portfolio h2{
    font-size: 1.5rem;
  }

  .portfolio h1{
    margin-top: -10px;
  }
  

  .content.active {
    --gap: 1px;
    --num-cols: 3;
    --row-height: 300px;
    box-sizing: border-box;
    padding: var(--gap);
    padding-bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: var(--row-height);
    gap: var(--gap);
  }

  .slideshow-container {
    max-width: 600px;
    margin: auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

}

@media (max-width: 580px){

  .content.active{
    display: grid;
    grid-template-columns: auto auto;
  }

.glass-card{

  width: 60%;
}


 
}
/*==============================extra small screens=================================*/
@media (max-width: 490px) {
 

  .about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .glass-card{
    width: 70%;
 right: 20px;
  }
  .about-content h1 {
    font-size: 1.5rem;
  }

  .about-content p {
    font-size: 0.85rem;
  }

  .about-content .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }



  .mentoring-section {

    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
  }

  .cta-button {
    width: 80%;
  }




  .offerings-grid {
    display: grid;
    grid-template-columns: auto;
    gap: 30px;
    margin-bottom: 60px;
  }

  .portfolio h2 {
    font-size: 19px;
    margin-bottom: 1rem;
  }



  .content.active {
    --gap: 1px;
    --num-cols: 5;
    --row-height: 300px;
    box-sizing: border-box;
    padding: var(--gap);
    padding-bottom: 1rem;
    display: grid;
    grid-template-columns: auto;
    grid-auto-rows: var(--row-height);
    gap: var(--gap);
  }

.about-section {
    width: 100%;
  }

  .container {

    width: 90%;
  }

  .mentoring-section h2 {
    font-size: 1rem;

  }

  .footer-branding h1 {
    width: 290px;

  }

  .tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    background-color: #ffffff;
    box-shadow: 2px 2px 2px 2px rgb(0, 0, 0);
    color: #000000;
    padding-top: 15px;
    font-size: 1rem;
    border: none;
    padding-bottom: 15px;
    border-radius: 2rem;
  }

  .tab {
    background-color: transparent;
    color: #000;
  }

  .tab:hover {
    background-color: #ff0000;
    color: #fff;
  }

}



@media (max-width: 390px) {
  .mentoring-section {
    padding: 12px 12px 0px 12px;
    width: 90%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    padding-bottom: 30px;
  }


  .mentoring-section img {
    width: 100%;
  }

  .portfolio h2 {
    font-size: 1rem;
  }

  .portfolio h1 {
    font-size: 1rem;
    margin-top: 1.5rem;
  }

  .tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    border-radius: 1.5rem;
  }

  .tab:hover {
    background-color: #ff0303;
  }

  /*===========================recipes=========================*/
  .slideshow-container {
    max-width: 340px;
    margin: auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

  .recipe-section {
    padding: 10px 6px;
    width: 95%;
    background: linear-gradient(to right, #fdfbfb, #ebedee);
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }


}

@media (max-width: 290px){
  .mentoring__image{
    width: 50%;
    margin-left: -20px;
  }

  .mentoring__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .mentoring__content p{
    font-size: 16px;
    margin-left: -20px;
    width: 90%;
  }

  .cta-button{
    font-size: 1rem;
    width: 190px;
    margin-left: -20px;
  }

  .myBtn{
    width: 190px;
  }

  .about-buttons{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}