/* === BUTLER FONT FAMILY === */
@font-face {
  font-family: "Butler-Black";
  src: url("fonts/Butler_Black.otf") format("opentype");
}
@font-face {
  font-family: "TheBlackKnightDEMO";
  src: url("fonts/TheBlackKnightDEMO.otf") format("opentype");
}
@font-face {
  font-family: "Butler-Bold";
  src: url("fonts/Butler_Bold.otf") format("opentype");
}
@font-face {
  font-family: "Butler-ExtraBold";
  src: url("fonts/Butler_ExtraBold.otf") format("opentype");
}
@font-face {
  font-family: "Butler-Light";
  src: url("fonts/Butler_Light.otf") format("opentype");
}
@font-face {
  font-family: "Butler-Medium";
  src: url("fonts/Butler_Medium.otf") format("opentype");
}
@font-face {
  font-family: "Butler-Regular";
  src: url("fonts/Butler_Regular.otf") format("opentype");
}

@font-face {
  font-family: "Butler-UltraLight";
  src: url("fonts/Butler_Ultra_Light.otf") format("opentype");
} /* === CANIS MAJOR === */
@font-face {
  font-family: "CanisMajor";
  src: url("fonts/CANIS-MAJOR.ttf") format("truetype");
} /* === Movie Makers Personal Use === */
@font-face {
  font-family: "MovieMakersPersonalUse";
  src: url("fonts/MovieMakersPersonalUse.ttf") format("truetype");
} /* === CINZEL FAMILY === */
@font-face {
  font-family: "Cinzel-Black";
  src: url("fonts/Cinzel-Black.otf") format("opentype");
}
@font-face {
  font-family: "Cinzel-Bold";
  src: url("fonts/Cinzel-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Cinzel-Regular";
  src: url("fonts/Cinzel-Regular.otf") format("opentype");
}
@font-face {
  font-family: "CinzelDecorative-Black";
  src: url("fonts/CinzelDecorative-Black.otf") format("opentype");
}
@font-face {
  font-family: "CinzelDecorative-Bold";
  src: url("fonts/CinzelDecorative-Bold.otf") format("opentype");
}
@font-face {
  font-family: "CinzelDecorative-Regular";
  src: url("fonts/CinzelDecorative-Regular.otf") format("opentype");
} /* === GILL SANS CONDENSED === */
@font-face {
  font-family: "GillSansCondensed";
  src: url("fonts/gill-sans-mt-condensed.ttf") format("truetype");
} /* === HERTINE === */
@font-face {
  font-family: "Hertine";
  src: url("fonts/Hertine.woff") format("woff"),
    url("fonts/Hertine.ttf") format("truetype");
} /* === MISTRAL === */
@font-face {
  font-family: "Mistral";
  src: url("fonts/MISTRAL.ttf") format("truetype");
} /* === MOVIE FILMSTRIP === */
@font-face {
  font-family: "MovieFilmstrip";
  src: url("fonts/Movie.woff") format("woff"),
    url("fonts/Movie.ttf") format("truetype");
}

@font-face {
  font-family: "BlackMatcha";
  src: url("fonts/Black-Matcha.otf") format("opentype");
}

@font-face {
  font-family: "BAUHS93";
  src: url("fonts/BAUHS93.ttf") format("truetype");
}

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

body {
  font-family: "Rubik", sans-serif;
  background-color: rgb(255, 255, 255);
  color: #ffffff;
  cursor: none;
}

/* ========= Animation ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/*============ Blue cursor =============*/

.custom-cursor {
  position: fixed;
  width: 15px;
  height: 15px;
  background-color: #006c1a;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.1s ease-out, opacity 0.2s ease-out;
}

/* Header Styling */
.main-header {
  position: fixed;
  margin-top: 2%;
  width: 100%;
  color: white;
  z-index: 1000;
}

/* Navbar */
.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 2.4% 5%;
  width: 67%;
  margin: auto;
  background-color: rgb(0, 0, 0);
  border-radius: 90px;
  padding-left: 8%;
}

.logo-img {
  height: auto;
  width: 55px;
  display: block;
}
.nav-center {
  flex-grow: 1;
  text-align: center;
}

#current-section-name {
  color: #ffffff;
  font-family: "GillSansCondensed", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 3px 17px;
  border: 2px solid #ffffff;
}

.nav-right {
  cursor: none;
  display: flex;
  gap: 11px;
}

.social-img {
  width: 30px;
  height: auto;
  vertical-align: middle;
  transition: transform 0.3s ease-in-out;
}

.social-icon:hover .social-img {
  transform: scale(1.1);
}

/* Khbbi l-burger f PC */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}

.burger-line {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s linear;
}

.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 1005;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.3s ease-in-out;
}

.mobile-nav-menu.active {
  right: 0;
}

.mobile-link {
  font-family: "BlackMatcha", "Gill Sans MT", sans-serif;
  font-size: 32px;
  color: white;
  text-decoration: none;
  padding: 15px 0;
}

.mobile-socials {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.mobile-socials .social-img {
  width: 35px;
}

/* home page */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 7%;
  height: 110vh;
  background-color: white;
  flex-direction: row-reverse;
}

.text-content {
  max-width: 50%;
  margin-left: 4%;
}

.img-content {
  max-width: 45%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-content img {
  max-width: 100%;
  max-height: 77vh;
  object-fit: contain;
}

/* Title */
.text-content h1 {
  font-family: "TheBlackKnightDEMO", "Gill Sans MT", "Trebuchet MS", sans-serif;
  font-size: 37px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #000;
}

.text-content .highlight {
  color: #006c1a;
}

.text-content .h2 {
  font-size: 30px;
  background-color: #000;
  color: #fff;
  padding: 5px 5px;
}

.small-text {
  font-size: 17px;
  font-family: "GillSansCondensed", sans-serif;
  color: #006c1a;
  margin-bottom: 40px;
  width: 95%;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.contact-btn,
.order-btn {
  padding: 15px 35px;
  font-family: "TheBlackKnightDEMO", cursive;
  font-size: 13px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.4s;
}

.contact-btn {
  background-color: black;
  color: white;
}

.order-btn {
  background-color: #006c1a;
  color: white;
}

.contact-btn:hover,
.order-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
  background-color: #ffffff;
  padding: 0px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  color: white;
  height: 100vh;
  margin-bottom: -80px;
}

.about-img {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img img {
  width: 100%;
  max-width: 670px;
  height: auto;
  object-fit: contain;
}

.about-content {
  flex: 1 1 45%;
  text-align: left;
  padding: 0 10px;
  margin-top: -7%;
}

.about-content h1 {
  margin-bottom: 5%;
  font-size: 37px;
  font-family: "TheBlackKnightDEMO", sans-serif;
  line-height: 1.5;
  color: #000000;
}

.about-content .highlight {
  color: #006c1a;
}

.about-content p {
  margin-top: -1%;
  font-size: 17px;
  font-family: "GillSansCondensed", sans-serif;
  line-height: 1.5;
  color: #000000;
}

/* ================= SHOWCASE SECTION ================= */

.showcase {
  padding: 7%;
  background-color: #ffffff;
  color: #000;
}

.showcase-header {
  width: 70%;
  margin: 0 auto 50px auto;
  text-align: center;
}

.showcase-header h2 {
  margin-bottom: 2%;
  font-size: 37px;
  font-family: "TheBlackKnightDEMO", sans-serif;
  line-height: 1.5;
  color: #000000;
}
.showcase-header h2 span {
  color: #006c1a;
}

.showcase-header p {
  margin-top: -1%;
  font-size: 17px;
  font-family: "GillSansCondensed", sans-serif;
  line-height: 1.5;
  color: #000000;
}

/* --- Filter Buttons Styles --- */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: "GillSansCondensed", sans-serif;
  font-size: 16px;
  padding: 10px 25px;
  border: 2px solid #000000;
  border-radius: 50px;
  background-color: transparent;
  color: #000000;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.filter-btn:hover {
  background-color: #f0f0f0;
}

.filter-btn.active {
  background-color: #006c1a;
  border-color: #006c1a;
  color: white;
}
/* --- End Filter Buttons Styles --- */

/* L-Grid dyal tswr - MASONRY EFFECT (PC) */
.showcase-grid {
  column-count: 3;
  column-gap: 10px;
  width: 90%;
  margin: 0 auto;
  display: block;
}

.showcase-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: block;
  width: 100%;
  break-inside: avoid;
  height: auto;
}

/* Class li katkhbi item (bach nst3emlouha f JS) */
.showcase-item.hidden {
  display: none !important;
}

.showcase-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.6s ease;
  cursor: pointer;
}

.showcase-item:hover img {
  filter: grayscale(0%);
}

/* Lightbox & Controls */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9997;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(7px);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  text-align: center;
  transform: translateY(-5%);
}

.lightbox-img {
  max-width: 85vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.lightbox-controls {
  display: flex;
  justify-content: center;
  gap: 25px;
  background-color: #000000;
  padding: 12px 55px;
  border-radius: 50px;
  position: absolute;
  bottom: -74px;
  left: 50%;
  transform: translateX(-50%);
}

.lightbox-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  padding: 5px;
  cursor: pointer; /* Khass tkhaddam pointer 7it custom cursor kaysaybouh f js */
  transition: transform 0.2s ease;
}

.lightbox-btn:hover {
  transform: scale(1.1);
}

.lightbox-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Pagination: Khaliha hidden kima bghiti */
.pagination-controls,
.pagination-numbers,
.nav-btn,
.pagination-btn {
  display: none !important;
}

/* CONTACT SECTION */

.styled-card-section {
  padding: 50px 0;
  background-color: white;
}

/* Titre principal */
.contact-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 5%;
  text-transform: uppercase;
  font-family: "TheBlackKnightDEMO", sans-serif;
  color: #000000;
}

.contact-title span {
  color: #006c1a;
}

/* Paragraphe d'intro sous le titre */
.intro-text {
  font-size: 17px;
  font-family: "GillSansCondensed", sans-serif;
  color: #000000;
  margin-bottom: 50px;
  line-height: 1.7;
  text-align: center;
}

/* Carte contenant le fond + contenu */
.styled-card {
  width: 85%;
  margin: auto;
  position: relative;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.2)
    ),
    url("imgs/art1.jpg");
  background-size: cover;
  background-position: center;
}

/* Contenu textuel à l'intérieur de la carte */
.card-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px 30px;
}

/* Texte descriptif dans la carte */
.card-text {
  font-size: 17px;
  font-family: "GillSansCondensed", sans-serif;
  color: #ffffff;
  max-width: 1100px;
  margin-bottom: 40px;
  line-height: 1.7;
  text-align: center;
}

/* Bouton Learn More */
.card-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background-color: #fff;
  color: #000;
  border-radius: 50px;
  padding: 10px 15px 10px 25px;
  font-family: "Cinzel-Bold", serif;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  gap: 10px;
}

.card-button:hover {
  background-color: #000;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Espace entre texte et icônes */
.social-cards {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  width: 160px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.social-card:hover {
  transform: translateY(-8px);
}

.icon-img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  object-fit: contain;
}

.social-card h3 {
  color: #fff;
  margin: 0 0 8px;
  font-family: "TheBlackKnightDEMO", sans-serif;
  font-weight: 500;
  font-size: 15px;
}

.social-card p {
  color: #fff;
  margin: 0;
  font-size: 12px;
  font-family: "GillSansCondensed", sans-serif;
}

.phone {
  display: none;
}

/*========= FOOTER =========*/
#main-footer {
  height: auto;
  background-color: #000000;
  border-radius: 40px 40px 0 0;
  padding-bottom: 3%;
}

#main-footer .footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-left,
.footer-center,
.footer-right {
  margin-top: 5%;
  flex: 1 1 250px;
  min-width: 230px;
}

.footer-left {
  margin-left: 10%;
}

.footer-center {
  margin-left: 7%;
}

/* ===== LEFT ===== */
.footer-left h3 {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.footer-left p {
  font-size: 12px;
  line-height: 1.6;
  font-family: "GillSansCondensed", sans-serif;
  color: #ffffff;
  margin-top: 5%;
  text-align: start;
}

/* ===== CENTER ===== */
.footer-center h3 {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.footer-center ul {
  list-style: none;
}

.footer-center ul li {
  margin-bottom: 10px;
  line-height: 0.1;
}

.footer-center ul li a {
  text-decoration: none;
  font-size: 12px;
  line-height: 0.2;
  font-family: "GillSansCondensed", sans-serif;
  color: #ffffff;
  transition: color 0.3s;
  text-align: start;
}

.footer-center ul li a:hover {
  color: #006c1a;
}

/* ===== RIGHT ===== */
.footer-right h3 {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: start;
}

.footer-icons {
  margin-left: 3.5%;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.footer-icons li a img {
  width: 30px;
  transition: transform 0.3s, filter 0.3s;
  display: inline-block;
}

.footer-icons li a:hover img {
  transform: scale(1.2);
}

.footer-image img {
  display: none;
}
.footerroightandimg {
  display: flex;
  align-items: flex-start;
  margin-left: 3%;
  margin-top: 4%;
}

.footer-image img {
  display: none;
}

/* =================================================== */
/* ============== MEDIA QUERIES (MOBILE) ============== */
/* =================================================== */

@media (max-width: 767px) {
  #about {
    scroll-margin-top: 16vh;
  }

  #skills {
    scroll-margin-top: 15vh;
  }

  #works {
    scroll-margin-top: 15vh;
  }

  #showcase {
    scroll-margin-top: 15vh;
  }

  #contact {
    scroll-margin-top: 15vh;
  }

  .custom-cursor {
    display: none;
  }
  body,
  * {
    cursor: auto;
  }

  /* ========= HEADER & NAVBAR ========== */
  .main-header {
    margin-top: 4%;
  }

  .navbar {
    cursor: pointer;
    width: 88%;
    padding: 3% 7.77%;
    padding-right: 9%;
    height: 60px;
    position: relative;
  }

  .logo-img {
    width: 45px;
  }

  #current-section-name {
    font-size: 12px;
    padding: 2px 12px;
  }

  .nav-right {
    display: none;
  }
  .burger {
    display: flex;
  }

  .mobile-nav-menu {
    display: block;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: 70%;
    transform: translateX(-50%);
    height: auto;
    background-color: #000;
    z-index: 1005;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out,
      padding 0.4s ease-out;
  }
  .mobile-nav-menu.active {
    max-height: 500px;
    opacity: 1;
    padding: 20px 20px;
  }

  .mobile-link {
    font-family: "GillSansCondensed", sans-serif;
    text-transform: uppercase;
    font-size: 15px;
    text-align: center;
    padding: 10px 0;
    display: block;
  }

  .mobile-socials {
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
  }

  .mobile-socials .social-img {
    width: 30px;
  }

  /* HERO */
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 25px;
    text-align: center;
    height: auto;
  }

  .img-content {
    margin-top: 25%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .text-content {
    max-width: 100%;
    margin-left: 0;
  }

  .text-content h1 {
    font-size: 33px;
  }

  .text-content .h2 {
    font-size: 20px;
  }

  .small-text {
    font-size: 12px;
    max-width: 88%;
    margin: 0 auto;
    margin-bottom: 5%;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 2px;
  }

  .contact-btn,
  .order-btn {
    width: 85%;
    padding: 10px 0;
    font-size: 12px;
    text-align: center;
    margin: 5px 0;
  }

  .contact-btn:hover,
  .order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  }

  /* ABOUT */
  .about {
    padding: 60px 30px;
    height: auto;
    margin-bottom: 0px;
  }

  .about-img img {
    max-width: 500px;
  }

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

  .about-content p {
    font-size: 12px;
  }

  /* ============ SHOWCASE =========== */
  .showcase {
    padding: 10% 5%;
  }

  .showcase-header {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .showcase-header h2 {
    font-size: 33px;
  }
  .showcase-header p {
    width: 100%;
    font-size: 12px;
  }

  .filter-buttons {
    gap: 10px;
  }
  .filter-btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .showcase-grid {
    width: 100%;
    column-count: 3;
    column-gap: 15px;
  }

  /* =============CONTACT========== */

  .styled-card-section {
    padding: 30px 15px;
  }

  .contact-title {
    font-size: 28px;
    margin-top: 10%;
    margin-bottom: 7%;
  }

  .intro-text {
    display: none;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
    padding: 0 10px;
  }

  .styled-card {
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 7px;
  }

  .card-content {
    padding: 15px 20px;
  }

  .card-text {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: center;
  }

  .card-button {
    font-size: 12px;
    padding: 8px 15px 8px 20px;
    border-radius: 40px;
  }

  .social-cards {
    margin-top: 30px;
    gap: 15px;
    justify-content: center;
  }

  .social-card {
    width: 87px;
    padding: 15px 10px;
    border-radius: 12px;
  }

  .social-card i {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .social-card h3 {
    font-size: 10px;
  }

  .social-card p {
    font-size: 11px;
  }
  .pc {
    display: none;
  }

  .phone {
    display: block;
  }

  /*========= FOOTER =========*/
  #main-footer {
    height: auto;
    background-color: #000000;
    border-radius: 40px 40px 0 0;
    padding-bottom: 3%;
  }

  #main-footer .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-left,
  .footer-right {
    margin-top: 5%;
    flex: 1 1 250px;
    min-width: 230px;
  }

  /* ===== LEFT ===== */
  .footer-left h3 {
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .footer-left p {
    font-size: 12px;
    line-height: 1.6;
    font-family: "GillSansCondensed", sans-serif;
    color: #ffffff;
    width: 90%;
    margin-top: 0;
    text-align: start;
  }

  /*======= LEFT =======*/
  .footer-left {
    padding-top: 5%;
  }

  /* ===== CENTER ===== */

  .footer-center {
    display: none;
  }

  .footer-right {
    margin-right: -15%;
  }

  /* ===== RIGHT ===== */

  .footer-right {
    margin-left: 10%;
    padding-bottom: 5%;
  }

  .footer-right h3 {
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: start;
  }

  .footer-icons {
    margin-left: 2.5%;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .footer-icons li a {
    font-size: 23px;
    color: #ffffff;
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
  }

  .footer-icons li a:hover {
    transform: scale(1.2);
  }

  .footerroightandimg {
    display: flex;
    align-items: flex-start;
    margin-left: 3%;
  }

  .footer-image img {
    display: block;
    width: 88px;
    margin-top: 5px;
    padding-left: -30px;
    margin-right: 9%;
  }
}

/* =================================================== */
/* ============== MEDIA QUERIES (TABLET) ============== */
/* =================================================== */
@media (min-width: 768px) and (max-width: 1024px) {
  .custom-cursor {
    display: none;
  }

  .main-header {
    margin-top: 3%;
  }

  .navbar {
    width: 85%;
    height: 65px;
  }

  .logo-img {
    width: 50px;
  }

  #current-section-name {
    font-size: 15px;
    padding: 3px 15px;
  }

  .nav-right {
    gap: 10px;
  }

  .social-img {
    width: 28px;
  }

  .burger {
    display: none;
  }
  .mobile-nav-menu {
    display: none;
  }

  /* HERO */
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 25px;
    text-align: center;
    height: auto;
  }

  .img-content {
    margin-top: 25%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .text-content {
    max-width: 100%;
    margin-left: 0;
  }

  .text-content h1 {
    font-size: 40px;
  }

  .text-content .h2 {
    font-size: 30px;
  }

  .small-text {
    font-size: 20px;
    max-width: 88%;
    margin: 0 auto;
    margin-bottom: 5%;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 2px;
  }

  .contact-btn,
  .order-btn {
    width: 85%;
    padding: 15px 0;
    font-size: 20px;
    text-align: center;
    margin: 5px 0;
  }

  .contact-btn:hover,
  .order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  }

  /* ABOUT */
  .about {
    padding: 60px 30px;
    height: auto;
    margin-bottom: 0px;
  }

  .about-img img {
    max-width: 100%;
  }

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

  .about-content p {
    font-size: 20px;
  }

  .showcase {
    padding: 10% 5%;
  }

  .showcase-header {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .showcase-header h2 {
    font-size: 40px;
  }
  .showcase-header p {
    width: 100%;
    font-size: 20px;
  }

  .filter-buttons {
    gap: 10px;
  }

  .showcase-grid {
    width: 100%;
    column-count: 2; /* 2 columns (Masonry) */
    column-gap: 15px;
  }

  /* =============CONTACT========== */

  .styled-card-section {
    padding: 30px 15px;
  }

  .contact-title {
    font-size: 40px;
    margin-top: 10%;
    margin-bottom: 7%;
  }

  .intro-text {
    display: none;
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
    padding: 0 10px;
  }

  .styled-card {
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 7px;
  }

  .card-content {
    padding: 15px 20px;
  }

  .card-text {
    font-size: 20px;
    max-width: 100%;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: center;
  }

  .card-button {
    font-size: 20px;
    padding: 8px 15px 8px 20px;
    border-radius: 40px;
  }

  .social-cards {
    margin-top: 20px;
    gap: 15px;
    justify-content: center;
  }

  .social-card {
    width: 150px;
    padding: 15px 10px;
    border-radius: 12px;
  }

  .social-card i {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .social-card h3 {
    font-size: 20px;
  }

  .social-card p {
    font-size: 15px;
  }
  .pc {
    display: none;
  }

  .phone {
    display: block;
  }

  /*========= FOOTER =========*/
  #main-footer {
    padding: 5% 9%;
  }

  .footer-left {
    margin-left: 0%;
  }

  .footer-center {
    display: none;
  }
  .footer-right {
    margin-left: 10%;
  }

  /* ===== LEFT ===== */
  .footer-left h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .footer-left p {
    font-size: 15px;
    width: 90%;
    margin-top: 0;
  }

  /* ===== RIGHT ===== */
  .footer-right h3 {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: start;
  }

  .footer-icons {
    margin-left: 7.5%;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .footer-icons li a {
    font-size: 23px;
    color: #ffffff;
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
  }

  .footer-icons li a img {
    width: 40px;
  }

  .footer-icons li a:hover {
    transform: scale(1.2);
  }

  .footer-image img {
    display: none;
  }
}
