/* style.css */

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

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 15px 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37; /* Gold */
}

.tagline {
    font-size: 1rem;
    font-style: italic;
    color: #ffcc00; /* Gold tone */
    margin-top: -5px; /* Bring closer to title */
    font-weight: 500;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #d60000; /* Red */
}



.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #d60000; /* Red */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background-color: #a00000;
}
/* About Section */
.about {
    padding: 60px 50px;
    background-color: #f9f9f9;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #d60000; /* Red */
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* Products Section */
.products {
    padding: 60px 50px;
    background-color: white;
}

.products-header {
    text-align: center;
    margin-bottom: 40px;
}

.products-header h2 {
    font-size: 2rem;
    color: #d60000; /* Red */
}

.products-header p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 8px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.product-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.product-card h3 {
    margin: 15px 0 10px;
    color: #333;
}

.product-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}
/* Contact Section */
.contact {
    padding: 60px 50px;
    background-color: #f9f9f9;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2rem;
    color: #d60000;
}

.contact-header p {
    font-size: 1.1rem;
    color: #555;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.contact-info, .contact-map, .contact-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.contact-info h3, .contact-form h3 {
    margin-bottom: 15px;
    color: #333;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #d60000;
    outline: none;
}

.contact-form button {
    width: 100%;
}
/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #b91c1c, #d97706); /* Red to Gold */
  color: white;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.3); /* Black shadow for outline */
}

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

.footer-info, .footer-links, .footer-social {
  flex: 1 1 250px;
  margin: 10px;
}

.footer-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px black; /* Black outline effect */
}

.footer-links h3, .footer-social h3 {
  margin-bottom: 8px;
  font-size: 18px;
  border-bottom: 2px solid white;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 5px 0;
}

.footer-links a, .footer-social a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover, .footer-social a:hover {
  color: #facc15; /* Lighter gold on hover */
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

#contact {
  padding: 2rem;
  background: #f9f9f9;
}

#contact h2 {
  text-align: center;
  margin-bottom: 1rem;
}

#contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

#contact label {
  margin-top: 1rem;
}

#contact input,
#contact textarea {
  padding: 0.8rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#contact button {
  margin-top: 1rem;
  padding: 0.8rem;
  border: none;
  background: #e63946;
  color: white;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

#contact button:hover {
  background: #d62828;
}

/* =====================
   Responsive Design
   ===================== */

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 0.5rem;
  }

  

  /* About */
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  /* Products */
  .product-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-container {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
    .tagline {
        font-size: 0.9rem;
        text-align: center;
    }
}

.google-review-btn {
    display: inline-block;
    background-color: #4285F4; /* Google Blue */
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.google-review-btn:hover {
    background-color: #3367D6;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .google-review-btn {
        font-size: 14px;
        padding: 10px 16px;
    }
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img,
.slide video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Show full content without cropping */
  object-position: center;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
}

.hero-text h1 {
  font-size: 3rem;
  margin: 0 0 10px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff4f4f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000; /* Fallback if media fails to load */
}

/* Images & Videos inside hero */
.hero img,
.hero video {
  width: 100%;
  height: 100%;
  object-position: center;
}

/* Desktop View — visually strong (may crop edges) */
@media (min-width: 768px) {
  .hero img,
  .hero video {
    object-fit: cover;
  }
}

/* Mobile View — show the whole media (no cropping) */
@media (max-width: 767px) {
  .hero img,
  .hero video {
    object-fit: contain;
    background-color: #000; /* Prevent white bars around media */
  }
}

/* Optional: text overlay styling */
.hero-content {
  position: absolute;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.hero-content h1 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: clamp(1rem, 3vw, 1.25rem);
}

