@import url('https://fonts.googleapis.com/css?family=Raleway:100,400,600,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
:root {
    --primary-color: #ffa500; 
    --secondary-color: #ffffff;
    --dark-bg: #14173a;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
}

.header {
    height: 100vh;
    width: 100%;
    position: relative;
    background-image: url('../images/background-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    display: flex;
    flex-direction: column;

    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    z-index: 1;
}

.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
top: 0;
z-index: 10;
padding-top: 2%;
}

.contact-btn {
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
}
.contact-btn:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

.contact-btn::after { display: none; } 

.hero-content {
position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    margin: auto auto; 
    margin-top: 80px;   
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.6);
    background-color: #ff8c00;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #333;
    transform: translateY(-3px);
}

.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar span {
font-size: 30px;
color: #fff;
line-height: 25px;
font-weight: bold;
font-family: 'Raleway', sans-serif;
margin-right: auto; 
width: 40%;
text-align: center;
}

.navbar a {
  color: #ffffff; 
  text-decoration: none;
  margin: 0 10px;
  font-size: 18px; 
  transition: color 0.3s ease-in-out; 
  font-family: 'Raleway', sans-serif;
  width: 10%;
}

.navbar a:hover {
  color: #ffa500; 
}

.navbar span:hover {
  color: #ec2727; 
}

.nav-menu {
  list-style: none;
  padding: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #333;
  position: absolute;
  top: 60px;
  width: 100%;
  margin-top: 20px;
}

.nav-menu li {
  text-align: center;
  width: 100%;
}

.nav-menu a {
  color: #fff;
  padding: 15px;
  text-decoration: none;
  font-size: 18px;
  width: 100%;
  text-align: center;
  display: block;
}

.nav-menu a:hover {
  background-color: #ffa500;
}

.nav-menu.active {
  display: flex; 
  flex-direction: column; 
  position: absolute; 
  top: 70px; 
  right: 0;
  width: 200px;
  background-color: #14173a; 
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
  padding: 15px;
  z-index: 10; 
  opacity: 0.9; 
}

.mobile-menu-icon {
  display: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}


.about-container {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  margin: 40px auto;
  border: 0.5px solid #d2691e;
  transition: transform 0.3s ease-in-out;
}

.about-container:hover {
  transform: scale(1.02);
}

.about-container h2 {
  font-size: 25px;
  color: #b45309;
  margin-bottom: 10px;
  font-weight: bold;
}

.about-container p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 5px;
  font-family: 'Arial', sans-serif;
}

.content {
  background-color: #ffffff; 
  padding: 20px;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.gallery-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.gallery-container p {
  margin-bottom: 30px;
  font-size: 1rem;
  color: #666;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-item {
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.gallery-item p {
  margin: 10px 0 0;
  font-size: 1.2rem;
  color: #111111;
}

#contacts {
  display: flex;
  flex-wrap: wrap;
  background-color: #1e1e1e;
  padding: 40px;
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

h4 {
  color: #FFA500;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h6 {
  color: #FFA500;
  font-size: 18px;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

.contact-info {
  flex: 1;
  margin: 10px;
  padding: 20px;
  background-color: #222;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
}

.contact-info i, .working-hours i {
  color: #FFA500;
  margin-right: 10px;
}

.social-media ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

.social-media ul li {
  margin-right: 20px;
}

.social-media ul li a {
  color: white;
  font-size: 30px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-media ul li a:hover {
  color: #FFA500;
  transform: scale(1.1);
}

.map {
  margin-top: 10px;
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
}


.custom-container {
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
  padding: 0 15px;
}

.custom-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.custom-reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.custom-review {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 30%;
  box-sizing: border-box;
}

.custom-stars {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.custom-star {
  font-size: 20px;
  color: #ffa500;
  transition: transform 0.3s, color 0.3s;
  cursor: pointer;
}

.custom-star:hover {
  transform: scale(1.2);
  color: #ffcc00;
}

.custom-review p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.custom-review .custom-author {
  font-size: 14px;
  font-weight: bold;
  color: #888;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
}

.my-float {
  margin-top: 16px;
  font-size: 25px;
}

.float:hover {
  background-color: #20b954;
  transition: background-color 0.3s;
}

.footer {
text-align: center;
font-size: 14px;
color: #000;
background-color: #1e1e1e;
}

.name {
color: orange;
opacity: 0.7;
}

.footer p {
margin: 0;
padding: 10px;
color: white;
}

.menu-button {
  background-color: transparent;
  color: #007BFF;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  align-items: center;
  transition: color 0.3s;
  justify-content: center;
}
.menu-button:hover {
  color: #0056b3;
}

.menu-button .fas {
  margin-right: 10px;
  font-size: 18px;
}

.highlight {
  color: #FF7F00;
}

#category {
  padding: 50px 0;
  text-align: center;
  background-color: #f9f9f9;
}

.container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.category {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  cursor: pointer;
  width: 300px;
  height: 200px;
  border: 3px solid transparent;
}

.category:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(255, 165, 0, 0.8); 
}

.category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.category h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.3s ease-in-out;
}

.category:hover h3 {
  background: rgba(255, 165, 0, 0.8);
}

.gallery-item {
    transition: all 0.4s ease;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 2;
}

.gallery-item:hover img {
    filter: brightness(1.1);
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3498db;

  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;

  z-index: 1002;
}

  #loader:before {
      content: "";
      position: absolute;
      top: 5px;
      left: 5px;
      right: 5px;
      bottom: 5px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #e74c3c;

      -webkit-animation: spin 3s linear infinite;
      animation: spin 3s linear infinite;
  }

  #loader:after {
      content: "";
      position: absolute;
      top: 15px;
      left: 15px;
      right: 15px;
      bottom: 15px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #f9c922;

      -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.5s linear infinite;
  }

  @-webkit-keyframes spin {
      0%   { 
          -webkit-transform: rotate(0deg);
          -ms-transform: rotate(0deg);
          transform: rotate(0deg);
      }
      100% {
          -webkit-transform: rotate(360deg);
          -ms-transform: rotate(360deg);
          transform: rotate(360deg);
      }
  }
  @keyframes spin {
      0%   { 
          -webkit-transform: rotate(0deg);
          -ms-transform: rotate(0deg);
          transform: rotate(0deg);
      }
      100% {
          -webkit-transform: rotate(360deg);
          -ms-transform: rotate(360deg);
          transform: rotate(360deg);
      }
  }

  #loader-wrapper .loader-section {
      position: fixed;
      top: 0;
      width: 51%;
      height: 100%;
      background: #222222;
      z-index: 1001;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
  }

  #loader-wrapper .loader-section.section-left {
      left: 0;
  }

  #loader-wrapper .loader-section.section-right {
      right: 0;
  }

  .loaded #loader-wrapper .loader-section.section-left {
      -webkit-transform: translateX(-100%);
          -ms-transform: translateX(-100%);
              transform: translateX(-100%);

      -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
              transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  }

  .loaded #loader-wrapper .loader-section.section-right {
      -webkit-transform: translateX(100%);
          -ms-transform: translateX(100%);
              transform: translateX(100%);

-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
      transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  }
  
  .loaded #loader {
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;  
              transition: all 0.3s ease-out;
  }
  .loaded #loader-wrapper {
      visibility: hidden;

      -webkit-transform: translateY(-100%);
          -ms-transform: translateY(-100%);
              transform: translateY(-100%);

      -webkit-transition: all 0.3s 1s ease-out;  
              transition: all 0.3s 1s ease-out;
  }

  .custom-review {
      transition: all 0.3s ease;
      position: relative;
  }
    
  .custom-review:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  

  @media (max-width: 768px) {
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  
    .header {
      background-image: url('../images/background-1.png'); 
    }
    
    .navbar a {
      display: none;
    }
  
    .mobile-menu-icon {
      display: block; 
    }
  
    .nav-menu.active {
      display: flex;
    }
  
      #contacts {
      flex-direction: column;
    }
  
    #contacts > div {
      flex: none;
      margin: 15px 0;
    }
  
    .category {
      width: 240px;
      height: 160px;
    }
  
    .category h3 {
      font-size: 18px;
    }
  
    .about-container {
      padding: 20px 15px;
      margin: 20px 10px;
    }
  
    .about-container h2 {
      font-size: 20px;
    }
  
    .about-container p {
      font-size: 12px;
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1.1rem !important;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-content {
        margin-top: 40px;
        padding: 0 15px;
    }
  }

  @media (max-width: 500px) {
    .custom-review {
        max-width: 100%;
    }
    .header {
      background-image: url('../images/background-3.png'); 
    }

    .category {
      width: 200px;
      height: 140px;
    }
  
    .category h3 {
      font-size: 16px;
    }

    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
    
    .navbar span {
        font-size: 1.5rem;
    }
  }

