/* General Styles */
body {
  font-family: 'Lora', serif;
  margin: 0;
  padding: 0;
  color: #fff; /* White text for contrast */
  background-color: #000; /* Black background */
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #d4af37; /* Gold color for headings */
}

a {
  text-decoration: none;
  color: #d4af37; /* Gold color for links */
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: #000; /* Black background */
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1); /* White shadow for contrast */
  position: relative;
  z-index: 10;
}

.logo img {
  height: 150px; /* Adjust based on your logo size */
}

.menu-toggle {
  display: none; /* Hide by default */
  background: none;
  border: none;
  color: #d4af37;
  font-size: 100px;
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-menu li a {
  font-size: 16px; /* Larger font size */
  font-family: 'Cinzel', serif;
  font-weight: 700; /* Thicker font */
  color: #d4af37; /* Gold color */
  text-transform: uppercase; /* Uppercase for a royal look */
  letter-spacing: 1px; /* Spacing for elegance */
}

.nav-menu li a:hover {
  color: #fff; /* White on hover */
}

/* Video Background Section */
.video-background {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Darker overlay for better contrast */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px; /* Add padding for mobile */
}

.hero-content h1 {
  font-size: 36px; /* Smaller font size for mobile */
  margin-bottom: 20px;
  color: #d4af37; /* Gold color */
}

.hero-content p {
  font-size: 18px; /* Smaller font size for mobile */
  margin-bottom: 30px;
}

.btn {
  background: #d4af37; /* Gold background */
  color: #000; /* Black text */
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background: #b8860b; /* Darker gold on hover */
}

/* Collections Section */
.collections {
  padding: 40px 20px; /* Adjusted padding for mobile */
  text-align: center;
  background: #000; /* Black background */
}

.collections h2 {
  font-size: 28px; /* Smaller font size for mobile */
  margin-bottom: 20px;
  color: #d4af37; /* Gold color */
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center items on mobile */
  gap: 20px; /* Add gap between items */
}

.item {
  width: 100%; /* Full width on mobile */
  max-width: 300px; /* Limit width for larger screens */
  margin-bottom: 20px;
  position: relative;
}

.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  pointer-events: none;
}

/* About Section */
.about {
  padding: 40px 20px; /* Adjusted padding for mobile */
  text-align: center;
  background: #000; /* Black background */
}

.about h2 {
  font-size: 28px; /* Smaller font size for mobile */
  margin-bottom: 20px;
  color: #d4af37; /* Gold color */
}

.about p {
  font-size: 16px; /* Smaller font size for mobile */
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Section */
.contact {
  padding: 40px 20px; /* Adjusted padding for mobile */
  text-align: center;
  background: #000; /* Black background */
}

.contact h2 {
  font-size: 28px; /* Smaller font size for mobile */
  margin-bottom: 20px;
  color: #d4af37; /* Gold color */
}

.contact-info {
  font-size: 16px; /* Smaller font size for mobile */
  line-height: 1.8;
}

.highlight-link {
  color: #d4af37; /* Gold color */
  text-decoration: underline;
  font-weight: bold;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #000; /* Black background */
  color: #d4af37; /* Gold color */
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Show toggle button on mobile */
  }

  .nav-menu {
    display: none; /* Hide menu by default on mobile */
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex; /* Show menu when active */
  }

  .nav-menu li {
    margin: 10px 0;
    text-align: center;
  }
}