/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body & font palette */
body {
  font-family: "Open Sans", sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  background: rgba(0,0,0,0.8);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #d4af37;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;  /* Prevent sideways scroll */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.slider {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 1s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #fff;
}

.btn {
  background: #d4af37;
  color: #222;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: #b68b2d;
  color: #fff;
}

/* Products */
.products {
  padding: 80px 0;
  text-align: center;
}

.products h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.product-card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  padding: 20px;
  font-size: 1.4rem;
  color: #333;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* About */
.about {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.about-text ul {
  list-style: none;
}

.about-text ul li {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Contact */
.contact {
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #444;
}

.contact form {
  max-width: 500px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact button {
  padding: 14px;
  background: #d4af37;
  color: #222;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact button:hover {
  background: #b68b2d;
  color: #fff;
}

.contact-info {
  margin-top: 20px;
  font-size: 1rem;
  color: #333;
}

.contact-info a {
  color: #222;
  text-decoration: none;
}

.social-link {
  color: #d4af37; /* gold accent */
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px; /* space between icon and text */
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #b68b2d;
}

.social-link i {
  font-size: 1.2rem; /* adjust icon size */
}

.map-container {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  padding: 30px 0;
  text-align: center;
}

.footer-container p {
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { font-size: 1.1rem; }
}


