/* Import fonts */

@import url("https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Varibales and Universal declarations */
:root {
  --main: #ff9e56;
  --green: #2a9d6e;
  --red: #e63c49;
  --yellow: #ffd26b;
  --bisque: #ffe4c4;
  --primary-color: #0077ff;
  --text-color: #fff;
  --bg-dark: #121212;
  --card-bg: rgba(255, 255, 255, 0.1);
  --shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  --primary-color: #ff9e56;
  --secondary-color: #070707;
  --text-light: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --blur-bg: rgba(0, 0, 0, 0.4);
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  --animate-duration: 1300ms;
  --animate-delay: 0.9s;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: poppins;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-behavior: smooth;
}
.job-popup {
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 400px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  border-radius: 10px;
  text-align: center;
  display: none;
}

.popup-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.popup-content p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.apply-btn {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

.scale-up-ver-center {
  -webkit-animation: scale-up-ver-center 0.4s
    cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: scale-up-ver-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.kenburns-bottom-right {
  -webkit-animation: kenburns-bottom-right 5s ease-out both;
  animation: kenburns-bottom-right 5s ease-out both;
}

.section_header {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section_header::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: var(--primary-color);
  margin-top: 5px;
  border-radius: 2px;
  box-shadow: 0px 0px 10px var(--primary-color);
}
/* Navigation bar */

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 60px;
  position: fixed;
  height: 80px;
  left: 0;
  top: 0;
  width: 100%;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid var(--glass-bg);
}

.navbar.fixed {
  position: fixed; /* Becomes fixed after scroll */
  background: rgba(0, 0, 0, 0.9); /* Darker background for contrast */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 10px 50px; /* Slightly smaller padding */
}

.nav-logo img {
  width: clamp(100px, 1.3vw, 130px);
  height: auto;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.nav-item {
    padding: 20px;
    justify-content: space-evenly;
    transition: background 0.2s, color 0.3s, background-color 0.3s;
}

.nav-item .nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.nav-item:hover {
    background-image: url(Images/tab\ selector.png);
    background-repeat: no-repeat;
    background-size: contain;
    animation: slide-in 0.3s forwards;
    background-position: center;
    -webkit-animation: slide-in 0.3s forwards;
}

.nav-link:hover {
    color: var(--yellow);
}

.nav-item:after {
    background-image: url(Images/tab\ selector.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;  
}

.nav-button {
  color: var(--main);
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  font-size: 14px !important;
  background: var(--main);
  font-family: Poppins, sans-serif;
  cursor: pointer;
  background: var(--green);
}

.nav-button a {
  text-decoration: none;
  color: var(--text-light);
}

.hamburger,
.cancel-hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease-in-out;
  order: 1;
}

.hamburger i,
.cancel-hamburger i {
  font-size: 30px;
  color: #fff;
}

/* .hamburger:hover {
    background: #ff3d00;
} */

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url("./Images/Quesadaillas.jpg") no-repeat center center/cover;
  position: relative;
  text-align: center;
  overflow: hidden;
  background-attachment: fixed;
  width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
  font-family: lobster two;

  font-size: clamp(3.5rem, 12vw, 4rem);
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #fff;
}

.btn {
  outline: none;
  border: none;
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  font-size: 1rem;
  color: var(--text-light);
  background: var(--primary-color);
  border-radius: 25px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
  /* font-family: Oswald; */
  font-family: Poppins, sans-serif;
}

.order-online {
  background: var(--main);
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 77, 0, 0.6);
}

@media (max-width: 768px) {
  .nav-button {
    display: none;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .nav-menu {
    gap: 18px;
  }
}

.nav-menu.active .nav-item a {
  display: block;
  margin: 10px 0;
  font-size: 25px;
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 30px;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    background: var(--glass-bg);
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(15px);
  }
  .nav-menu.show {
    display: flex;
  }


  .nav-menu-container {
    position: relative;
  }

  .nav-menu.active {
    border-radius: 0;
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    background: var(--secondary-color);
    justify-content: center;
    align-items: center;
    z-index: 9;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }

  .nav-menu.active .cancel-hamburger {
    position: fixed;
    display: block;
    top: 20px;
    z-index: 999;
    right: 20px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: var(--glass-bg);
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(15px);
  }
  .hamburger {
    display: block;
  }
 
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
  }
 
  .hero p {
    font-size: 0.9rem;
  }
  .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* ! About us section  */

#about-us {
  min-height: 100vh;
  margin-top: 100px;
  z-index: 10;
  position: relative;
  margin: 100px 10px 100px;
}

/* .about-us_container {
    display: flex;
    justify-content: space-between;
}

.about-us_container_img {
    flex-basis: 50%;
    padding: 0 10px;
    aspect-ratio: 9/11;
    
}

.about-us_container_img img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 9/11;
}

.about-us_container_writeup {
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-us_container_writeup p {
    line-height: 2;
} */

/* About Us Container */
.about-us_container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-dark);
  box-shadow: var(--shadow);
  border-radius: 15px;
  overflow: hidden;
  padding: 40px;
  transition: transform 0.3s ease-in-out;
  animation: floatAnimation 4s infinite ease-in-out;
}

/* Floating Effect */
@keyframes floatAnimation {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* About Us Image */
.about-us_container_img {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  /* animation: pulse 3s infinite ease-in-out;
  -webkit-animation: pulse 3s infinite ease-in-out; */
}

.about-us_container_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease-in-out;
  aspect-ratio: 9/9;
}

.about-us_container_img:hover img {
  transform: scale(1.05) rotate(2deg);
}

/* Pulsing Effect */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* About Us Text */
.about-us_container_writeup {
  flex: 1;
  text-align: left;
}

/* Shake Animation */
@keyframes shake {
  0%,
  100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-1deg);
  }
  50% {
    transform: rotate(1deg);
  }
  75% {
    transform: rotate(-1deg);
  }
}

/* Fancy Header */
.about-us_container_writeup .section_header {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  letter-spacing: 2px;
}

/* Neon Underline */
.about-us_container_writeup .section_header::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: var(--primary-color);
  margin-top: 5px;
  border-radius: 2px;
  box-shadow: 0px 0px 10px var(--primary-color);
}

/* Glitchy Text Effect */
.about-us_container_writeup p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
}

@keyframes glitch {
  0% {
    text-shadow: 2px 2px red;
  }
  50% {
    text-shadow: -2px -2px cyan;
  }
  100% {
    text-shadow: 2px 2px red;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-us_container {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 30px;
  }
  .about-us_container_writeup {
    text-align: center;
  }
  .about-us_container_img img {
    aspect-ratio: 1/1;
  }
}

@media (max-width: 768px) {
  .about-us_container {
    padding: 20px;
  }
  .about-us_container_writeup p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-us_container_writeup .section_header {
    font-size: 24px;
  }
  .about-us_container_writeup p {
    font-size: 13px;
  }
}


/* ! opening hours  */

.opening-hours {
    margin-top: -100px;
    min-height: 150vh;
    background-image: url("./Images/back\ red.png");
    padding: 80px 20px;
    text-align: center;
    color: var(--text-light);
    position: relative;
    width: clamp(300px, 90vw, 1300px);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

  
  .opening-hours .section-title {
    font-size: clamp(25px , 3.5vw, 50px);
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-family: lobster two;
  }
  
  .hours-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .hours-wrapper-title {
    flex-basis: 100%;

  }
  
  .hour-card {
    padding: 20px;
    width: clamp(300px, 60vw, 700px);
    border-radius: 40px;
    flex-basis: 40%;
    box-shadow: var(--shadow);
    background-image: url("./Images/back\ green.png");
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    -webkit-transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    -ms-transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
   
}


  
  

  
  .hour-card h3 {
    font-size: clamp(17px, 3vw, 30px);
    color: var(--yellow);
  }
  
  .hour-card p {
    font-size: clamp(15px, 2.6vw, 20px);
    font-weight: bold;
    color: var(--text-light);
    text-align: left;
    line-height: 2.5;
  }
  
  .highlight {
    
    flex-basis: 100%;
  }
  .highlight h3 {
    font-size: clamp(18px, 4vw, 40px);
  }
  
  .cta {
    margin-top: 40px;
  }
  
  .cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
  }
  
  .reserve-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--main);
    color: var(--text-color);
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 8px;
    transition: background 0.3s ease-in-out, transform 0.2s;
  }
  
  .reserve-btn:hover {
    background: var(--red);
    transform: scale(1.1);
  }
  





/* ! menus */

.menu-section {
  text-align: center;
  padding: 80px 20px;
  background: url("./Images/back\ green.png");
  width: 100%;
  margin-top: 100px;
  box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.263);
}
.menu-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.menu-item {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
.menu-item:hover {
  transform: translateY(-5px);
}
.menu-item img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.4s ease-in-out;
}
.menu-item:hover img {
  transform: scale(1.05);
}
.menu-info {
  margin-top: 10px;
}
.menu-info h3 {
  font-size: 1.5rem;
  color: #333;
}
.menu-info p {
  color: #777;
  font-size: 0.9rem;
}
.menu-info span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #e44d26;
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .opening-hours .hour-card {
    flex-basis: 100%;
    align-items: center;

  }
}

.learn-more-btn {
    display: flex;
    justify-content: center;
    cursor: pointer;
    margin-top: 20px;
  
}

/*!Reviews */

#testmonial {
  padding: 80px 10%;
  text-align: center;
  background: var(--bg-dark);
  background-image: url("./Images/back\ red.png");
  position: relative;
  overflow: hidden;
}

/* Floating Animated Background */
#testmonial::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.3), transparent);
  top: -100px;
  left: -100px;
  animation: floating 6s infinite alternate ease-in-out;
  filter: blur(50px);
}

#testmonial::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 0, 150, 0.3), transparent);
  bottom: -100px;
  right: -100px;
  animation: floating 8s infinite alternate ease-in-out;
  filter: blur(50px);
}

@keyframes floating {
  from {
    transform: translateY(0px) translateX(0px);
  }
  to {
    transform: translateY(30px) translateX(30px);
  }
}

/* Section Title */
.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  color: var(--main);
  text-transform: capitalize;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Testimonial Container */
#testmonial {
  width: 100%;

}

.testmonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Testimonial Card */
.testmonial-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 30px;
  border-radius: 15px;
  max-width: 350px;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* Subtle Glow Animation */
.testmonial-card::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  top: -50%;
  left: -50%;
  animation: glow 5s infinite alternate ease-in-out;
  -webkit-animation: glow 5s infinite alternate ease-in-out;
}

@keyframes glow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Hover Effect */
.testmonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 30px rgba(0, 119, 255, 0.4);
}

/* Testimonial Title */
.testmonial-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Testimonial Subtitle */
.testmonial-subtitle {
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Testimonial Body */
.testmonial-body {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

/* Responsive Design */
@media (max-width: 992px) {
  #testmonial {
    padding: 60px 5%;
  }
}

@media (max-width: 768px) {
  #testmonial {
    padding: 50px 3%;
  }

  .testmonial-container {
    flex-direction: column;
    align-items: center;
  }

  .testmonial-card {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .testmonial-title {
    font-size: 20px;
  }

  .testmonial-subtitle {
    font-size: 14px;
  }

  .testmonial-body {
    font-size: 13px;
  }
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(150px, 1fr)
  ); /* Auto-fit for better responsiveness */
  gap: 10px;
  padding: 20px;
  background-color: #222;
  background-image: url("./Images/back\ yellow.png");
}

.gallery-grid-header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 1 / -1;
}

.gallery-grid h2 {
  text-align: center;
  color: var(--bg-dark);
  margin-bottom: 30px;
  text-transform: capitalize ;
}

/* Dynamic image sizes for larger screens */
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 50px;
  }

  .gallery-grid h2 {
    margin-bottom: 50px;
    grid-column: 1 / 5;
  }

  .gallery-grid-item:nth-child(1),
  .gallery-grid-item:nth-child(4),
  .gallery-grid-item:nth-child(9) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-grid-item:nth-child(7) {
    grid-column: span 3;
  }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid-item:nth-child(1),
  .gallery-grid-item:nth-child(4),
  .gallery-grid-item:nth-child(9) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid-item:nth-child(7) {
    grid-column: span 2;
  }
  .gallery-grid-item:nth-child(6) {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid h2 {
    grid-column: 1/3;
  }
  .gallery-grid-item:nth-child(1) {
    grid-row: span 2;
  }
  .gallery-grid-item:nth-child(3) {
    grid-row: span 3;
  }
  .gallery-grid-item:nth-child(7) {
    grid-row: span 1;
  }
  .gallery-grid-item:nth-child(9) {
    grid-row: span 2;
  }
}

/* Image styles */
.gallery-grid-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

/* Hover effect */
.gallery-grid-item:hover img {
  transform: scale(1.1);
  filter: brightness(70%);
}

/* Entrance animation */
.gallery-grid-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease-in-out forwards;
}

/* Animation Keyframes */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* animations */

@keyframes slide-up {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: var(--main);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  z-index: 1000;
}

#back-to-top:hover {
  background-color: var(--green);
}

/*! contact Section */

.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90vh;
  background: linear-gradient(
    135deg,
    var(--bg-dark) 50%,
    var(--secondary-color) 100%
  );
  text-align: center;
  padding: 50px 20px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Floating animation effect */
.contact-section::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.2;
  top: 10%;
  left: 5%;
  animation: float 6s infinite alternate ease-in-out;
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.2;
  bottom: 10%;
  right: 5%;
  animation: float 8s infinite alternate ease-in-out;
}

@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  100% {
    transform: translateY(20px) translateX(10px);
  }
}

/* Contact Content */
.contact-content {
  max-width: 600px;
  z-index: 1;
}

/* Title */
.contact-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--yellow), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.contact-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Call-to-Action Buttons */
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.call-btn {
  background: var(--green);
  color: var(--text-light);
}

.message-btn {
  background: var(--red);
  color: var(--text-light);
}

/* Button Hover */
.btn:hover {
  transform: scale(1.1);
  box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.2);
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  color: var(--text-light);
  font-size: 1.5rem;
  background: var(--glass-bg);
  padding: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  height: 50px;
  width: 50px;
}

/* Social Icon Hover Effects */
.social-link:hover {
  background: var(--primary-color);
  color: var(--bg-dark);
  transform: translateY(-5px);
}

@-webkit-keyframes scale-up-ver-center {
  0% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes scale-up-ver-center {
  0% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@-webkit-keyframes kenburns-bottom-right {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
    -webkit-transform-origin: 84% 84%;
    transform-origin: 84% 84%;
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    -o-transform: scale(1) translate(0, 0);
  }
  100% {
    -webkit-transform: scale(1.25) translate(20px, 15px);
    transform: scale(1.25) translate(20px, 15px);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}
@keyframes kenburns-bottom-right {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
    -webkit-transform-origin: 84% 84%;
    transform-origin: 84% 84%;
  }
  100% {
    -webkit-transform: scale(1.25) translate(20px, 15px);
    transform: scale(1.25) translate(20px, 15px);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}
