/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Roboto:wght@300;400&display=swap");

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

/* Body Styles */
body {
  font-family: "Roboto", sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #2b2b2b;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.logo {
  margin-bottom: 20px;
}

.logo h1 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: #87ceeb;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo p {
  font-size: 1rem;
  color: #b0b0b0;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid #444444;
  border-bottom: 1px solid #444444;
}

.nav-link {
  color: #87ceeb;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: #6bb8d8;
  text-decoration: underline;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.nav-toggle-label span {
  background: #87ceeb;
  height: 3px;
  width: 100%;
  border-radius: 2px;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  color: #87ceeb;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  padding: 10px;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.dropdown-toggle:hover, .dropdown-toggle.active {
  color: #6bb8d8;
  text-decoration: underline;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #2b2b2b;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 5px;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: #87ceeb;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 1rem;
  transition: color 0.3s ease, text-decoration 0.3s ease, background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #444444;
  color: #6bb8d8;
  text-decoration: underline;
}

.dropdown-content a.active {
  color: #6bb8d8;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #2b2b2b, #1a1a1a);
}

.hero-section.full-width {
  position: relative;
  padding: 0;
  min-height: 400px;
}

.banner-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 500px;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.hero-text {
  margin-bottom: 20px;
}

.hero-text h2 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: #87ceeb;
  margin-bottom: 15px;
  text-align: center;
}

.hero-text p {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 20px;
  text-align: center;
}

.hero-text a, .hero-overlay a {
  color: #87ceeb;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.hero-text a:hover, .hero-overlay a:hover {
  color: #6bb8d8;
  text-decoration: underline;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.cta-button {
  display: inline-block;
  background-color: #4682b4;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid #87ceeb;
  font-weight: bold;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  margin: 10px 0;
  min-height: 44px;
}

.cta-button:hover {
  background-color: #3a6f9b;
  border-color: #87ceeb;
}

/* Hero Gallery */
.hero-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-image {
  max-width: 180px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.05);
}

/* Main Gallery Section */
main {
  padding: 40px;
  text-align: center;
}

.gallery {
  margin-bottom: 40px;
}

.gallery h2 {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: #87ceeb;
  margin-bottom: 15px;
  text-align: center;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.image-grid a {
  display: block;
  color: #87ceeb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.image-grid a:hover {
  color: #6bb8d8;
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.image-grid img:hover {
  transform: scale(1.05);
}

/* Jewelry Items */
.jewelry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
  background: #2b2b2b;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.jewelry-item img {
  max-width: 120px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.jewelry-item img:hover {
  transform: scale(1.05);
}

.jewelry-item-content {
  margin-bottom: 15px;
}

.jewelry-item-content h3 {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  color: #87ceeb;
  margin-bottom: 10px;
}

.jewelry-item-content p {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-bottom: 15px;
}

/* About and Contact Content */
.about-content, .contact-content {
  background: #2b2b2b;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-content h2, .contact-content h2 {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: #87ceeb;
  margin-bottom: 15px;
  text-align: center;
}

.about-content p, .contact-content p {
  font-size: 1rem;
  color: #b0b0b0;
  margin-bottom: 15px;
}

.about-content a, .contact-content a {
  color: #87ceeb;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.about-content a:hover, .contact-content a:hover {
  color: #6bb8d8;
  text-decoration: underline;
}

/* Bio with Image */
.bio-with-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.bio-image {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.bio-image:hover {
  transform: scale(1.05);
}

.bio-text {
  margin-bottom: 15px;
}

/* Milestones Section */
.milestones {
  margin-bottom: 30px;
}

.milestones h2 {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: #87ceeb;
  margin-bottom: 20px;
  text-align: center;
}

.milestone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  background: #2b2b2b;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.milestone-item img {
  max-width: 120px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.milestone-item img:hover {
  transform: scale(1.05);
}

.milestone-content {
  margin-bottom: 15px;
}

.milestone-content h3 {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  color: #87ceeb;
  margin-bottom: 10px;
}

.milestone-content p {
  font-size: 0.9rem;
  color: #b0b0b0;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* Process Content */
.process-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 25px;
  background: #2b2b2b;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.process-content h2 {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: #87ceeb;
  margin-bottom: 15px;
  text-align: center;
}

.process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
  padding: 15px;
  border-radius: 10px;
  background: #333333;
}

.process-item img {
  max-width: 120px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.process-item img:hover {
  transform: scale(1.05);
}

.process-text {
  margin-bottom: 15px;
}

.process-text h3 {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  color: #87ceeb;
  margin-bottom: 10px;
}

.process-text p {
  font-size: 0.9rem;
  color: #b0b0b0;
}

/* Collection Sections */
.collection-section {
  margin-bottom: 40px;
}

.collection-section h2 {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: #87ceeb;
  margin-bottom: 20px;
  text-align: center;
}

/* Category List */
.category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.category-item {
  background: #2b2b2b;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.category-item h3 {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  color: #87ceeb;
  margin-bottom: 10px;
}

.category-item p {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-bottom: 15px;
}

/* Footer */
footer {
  background-color: #2b2b2b;
  padding: 15px;
  text-align: center;
  font-size: 0.85rem;
  color: #b0b0b0;
}

footer a {
  color: #87ceeb;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

footer a:hover {
  color: #6bb8d8;
  text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .logo h1 {
    font-size: 2rem;
  }

  .logo p {
    font-size: 0.9rem;
  }

  .nav-toggle-label {
    display: flex;
  }

  nav {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px 0;
  }

  .nav-toggle:checked ~ nav {
    display: flex;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 10px;
  }

  .dropdown-content {
    position: static;
    min-width: 100%;
    hushandry: none;
    box-shadow: none;
    background-color: #333333;
  }

  .hero-section {
    padding: 15px;
  }

  .hero-text {
    margin-bottom: 15px;
  }

  .hero-text h2, .hero-overlay h2 {
    font-size: 1.6rem;
  }

  .hero-text p, .hero-overlay p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-gallery {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-image {
    max-width: 150px;
  }

  .banner-image {
    max-height: 400px;
  }

  main {
    padding: 20px;
  }

  .gallery h2 {
    font-size: 1.5rem;
  }

  .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
  }

  .jewelry-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .jewelry-item img {
    max-width: 100px;
  }

  .jewelry-item-content {
    margin-bottom: 10px;
  }

  .jewelry-item-content h3 {
    font-size: 1.2rem;
  }

  .jewelry-item-content p {
    font-size: 0.85rem;
  }

  .process-content {
    padding: 15px;
  }

  .process-content h2 {
    font-size: 1.5rem;
  }

  .process-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
  }

  .process-item img {
    max-width: 100px;
  }

  .process-text {
    margin-bottom: 10px;
  }

  .process-text h3 {
    font-size: 1.2rem;
  }

  .process-text p {
    font-size: 0.85rem;
  }

  .category-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .category-item {
    padding: 10px;
  }

  .category-item h3 {
    font-size: 1.2rem;
  }

  .category-item p {
    font-size: 0.85rem;
  }

  .about-content, .contact-content {
    padding: 15px;
    margin-bottom: 20px;
  }

  .about-content h2, .contact-content h2 {
    font-size: 1.5rem;
  }

  .bio-with-image {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bio-image {
    max-width: 150px;
  }

  .bio-text {
    margin-bottom: 10px;
  }

  .milestone-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .milestone-item img {
    max-width: 100px;
  }

  .milestone-content {
    margin-bottom: 10px;
  }

  .milestone-content h3 {
    font-size: 1.2rem;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  footer {
    padding: 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.8rem;
  }

  .hero-text h2, .hero-overlay h2 {
    font-size: 1.4rem;
  }

  .gallery h2 {
    font-size: 1.3rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .jewelry-item-content h3 {
    font-size: 1.1rem;
  }

  .process-content h2 {
    font-size: 1.3rem;
  }

  .process-text h3 {
    font-size: 1.1rem;
  }

  .category-item h3 {
    font-size: 1.1rem;
  }

  .about-content h2, .contact-content h2 {
    font-size: 1.3rem;
  }

  .milestone-content h3 {
    font-size: 1.1rem;
  }
}