@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  color: #fff;
  line-height: 1.6;
  background: #111;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  background: url('images/MainImage.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

h1 span {
  color: #ffb366;
}

.subtitle {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ddd;
}

.description {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #eee;
}

.btn {
  background: #ff9248;
  color: #fff;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ff751a;
  cursor: pointer;
}

/* ---------- ABOUT SECTION ---------- */
.about {
  background: #fff;
  color: #222;
  padding: 80px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  min-width: 300px;
}

.about-gallery img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* ---------- SERVICES ---------- */
.services {
  background: #f7f7f7;
  color: #111;
  padding: 80px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 40px;
  color: #ff9248;
  margin-bottom: 15px;
  display: block;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #111;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
  font-weight: 500; 
}

/* ---------- ADVANTAGES ---------- */

.advantages {
  padding: 60px 20px;
  background: #fff;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.advantage-icon {
  min-width: 60px; 
  display: flex;
  justify-content: center;
}

.advantage-content {
  flex: 1;
}

.advantage-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.advantage-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}


/* ---------- REVIEWS ---------- */
.testimonials {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: bold;
  font-weight: 700;
  color: #000;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.testimonial-item {
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 30px 20px;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.testimonial-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #FFA500;
}

.testimonial-text {
  font-size: 1rem;
  font-weight: 500; 
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  width: 100%;
  font-size: 0.95rem;
  font-weight: bold;
  color: #222;
  margin-top: auto;
}

.testimonial-author .name {
  font-weight: bold;
  color: #222;
}

.testimonial-author .source {
  font-size: 0.85rem;
  font-weight: normal;
  color: #FFA500;
}


/* ---------- CONTACTS ---------- */
.contacts {
  padding: 50px 20px;
  text-align: center;
  background: #fff; 
  color: #222;     
}

.section-title {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: #111;
}

.contact-block {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
}

.contact-block p {
  margin: 10px 0;
  font-style: italic;
}

.contact-block strong {
  font-weight: bold;
  font-style: normal;
}

.no-link {
  text-decoration: none;   
  color: #222;             
}

.schedule h3 {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 15px;
  color: #111;
}

.schedule ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 15px;
  max-width: 220px;
  text-align: left;
}

.schedule li {
  font-size: 1.05rem;
  margin: 5px 0;
  color: #333;
}

.schedule strong {
  font-weight: bold;
}

.san-day {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 10px;
  color: #c00; 
}

.socials {
  margin-top: 30px;
}

.socials p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #111;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  width: 45px;             
  height: 45px;            
  display: flex;
  align-items: center;     
  justify-content: center;  
  font-size: 1.5rem;
  color: #fff;
  background: #FFA500;
  border-radius: 50%;       
  transition: 0.3s;
   text-decoration: none;
}

.social-icons a:hover {
  background: #ff7b00;
}


/* ---------- FOOTER ---------- */
.footer {
  background: #000;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  color: #fff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-logo {
  font-size: 20px;
  font-weight: bold;
  color: #FFA500;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFA500;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #FFA500;
}

.footer-socials {
  display: flex;
  gap: 15px;
  font-size: 22px;
}

.footer-socials a {
  color: #fff;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #FFA500;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid #333;
}


/* ---------- MOBILE VERSION ---------- */




@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
  .description {
    font-size: 0.95rem;
  }
  .btn {
    padding: 12px 24px;
  }
  about-container {
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* десктоп */
@media (min-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }
}

