/* General Reset */
html{
    scroll-behavior: smooth;;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Links */
a {
    color: #8B5A2B;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #FFD700;
}

/* Header */
/* Main Header */
.main-header {
    background-color: #fff; /* White background */
    text-align: center;
    margin-bottom: 10px;
}
.main-header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo {
    text-align: center;
}
.logo img {
    max-width: 200px; /* Adjust size of the logo */
}
.logo h1 {
    font-size: 1.8rem;
    color: #333;
    margin: 0;
}
.logo p {
    font-size: 0.9rem;
    color: #777;
    margin: 5px 0 0;
}
.main-nav{
    border-top: 1px solid rgba(0, 0, 0, 0.177);
    border-bottom: 1px solid rgba(0, 0, 0, 0.177);
    width: 100%;
    padding: 10px 0px;
}
.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.main-nav ul li {
    position: relative;
}
.main-nav ul li a {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 500;
    text-transform: capitalize;
}
.main-nav ul li a:hover {
    color: #a9804c; /* Accent color for hover effect */
}

/* Hero Section */
/* Hero Section */
/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    height: 80vh; /* Adjust the height as per your requirement */
    overflow: hidden; /* Hide the overflow to prevent the slider from exceeding the container */
    margin: 0 100px; 
    /* width: 100%; */
  }
  
  /* Hero Slider */
  .hero-slider {
    display: flex;
    transition: transform 1s ease-in-out; /* Smooth sliding transition */
    height: 100%;
  }
  
  /* Slide Styling */
  .hero-slider .slide {
    flex: 0 0 100%; /* Each slide takes up 100% of the container width */
    height: 100%;
    position: relative; /* Ensure positioning of content inside the slide */
  }
  
  /* Image Styling */
  .hero-slider img {
    width: 100%;
    height: 100vh;
    object-fit: cover; /* Ensures the image fully covers the container */
    object-position: center; 
  }
  
  /* Optional: Add text content over images in slides */
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for better text visibility */
    border-radius: 10px;
  }
  
  .hero h1 {
    font-size: 3rem;
    color: #FFD700; /* Bright Gold */
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #f0e6d2; /* Off-white text */
    margin-bottom: 30px;
  }
  
  /* Hero Button */
  .hero .btn {
    background-color: #a67c52; /* Muted Gold-Brown */
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
  }
  
  .hero .btn:hover {
    background-color: #d4af37; /* Bright Gold Hover */
  }
  
  /* Hero Content */
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
    max-width: 80%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for readability */
    border-radius: 10px;
  }
  
  .hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 2px;
  }
  
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #f0e6d2;
    font-weight: 500;
  }
  
  .hero .btn {
    background: #a67c52;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .hero .btn:hover {
    background: #d4af37;
  }
  





/* Section Titles */
section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #8B5A2B;
    text-transform: uppercase;
}

/* About Section */
.about {
    padding: 50px 20px;
    background: #f4f4f4;
    text-align: center;
}
.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* Products Section */
/* Products Section */
/* Products Section */
/* Products Section */
.products {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}
.products h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    text-transform: capitalize;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.product {
    text-align: center;
}
.product img {
    width: 90%;
    height: 300px; /* Adjust height to fit the design */
    object-fit: cover;
    border: none;
}
.product h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0;
    font-weight: 500;
    line-height: 1.5;
}
.product p {
    font-size: 1rem;
    color: #555;
    font-weight: bold;
    margin-top: 5px;
}
.products .product:hover{
    cursor: pointer;
    opacity: 0.8;

}

/* Gallery Section */
.gallery {
    padding: 50px 20px;
    background: #f4f4f4;
    text-align: center;
}
.gallery h2 {
    font-size: 2.5rem;
    color: #8B5A2B;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.gallery p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 20px;
}
.gallery-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


/* Contact Section */
.contact {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}
.contact form {
    max-width: 500px;
    margin: 0 auto;
}
.contact input,
.contact textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}
.contact textarea {
    resize: vertical;
    height: 150px;
}
.contact button {
    background: #8B5A2B;
    color: #fff;
    padding: 12px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.contact button:hover {
    background: #6a4423;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
.footer p {
    margin-bottom: 10px;
    font-size: 1rem;
}
.footer .social-icons a {
    margin: 0 10px;
    font-size: 1rem;
    color: #FFD700;
    transition: color 0.3s ease;
}
.footer .social-icons a:hover {
    color: #ffcc00;
}
