/* Base Styles */
:root {
  --imperial-gold: #D4AF37;
  --imperial-gold-light: #E5C76B;
  --imperial-gold-dark: #A68A2A;
  --dark-bg: #1D1D1F;
  --light-bg: #F5F5F7;
  --text-color: #333333;
  --text-color-light: #86868B;
  --white: #FFFFFF;
  --black: #000000;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--imperial-gold);
  transform: translateX(-50%);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-color-light);
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  background-color: var(--imperial-gold);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: var(--imperial-gold-dark);
  transform: translateY(-2px);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  height: 60px;
}

.logo img {
  height: 100%;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--imperial-gold);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--imperial-gold);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 10rem 0 6rem;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: var(--imperial-gold);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--gray-400);
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Collections Section */
.collections {
  background-color: var(--light-bg);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.collection-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.collection-image {
  height: 250px;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.collection-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.25rem;
  color: var(--text-color);
}

.collection-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-color-light);
}

/* Process Section */
.process {
  background-color: var(--white);
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 24px;
  width: 2px;
  height: calc(100% + 2rem);
  background-color: var(--gray-300);
  z-index: 1;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--imperial-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  z-index: 2;
}

.step-content {
  padding-left: 2rem;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.step-content p {
  margin-bottom: 1.5rem;
  color: var(--text-color-light);
}

.step-content img {
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  max-width: 400px;
}

/* Gallery Section */
.gallery {
  background-color: var(--light-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Certification Section */
.certification {
  background-color: var(--white);
}

.certification-logos {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.certification-logo {
  text-align: center;
  padding: 2rem;
  background-color: var(--light-bg);
  border-radius: 8px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.certification-logo h3 {
  font-size: 2rem;
  color: var(--imperial-gold);
  margin-bottom: 0.5rem;
}

.certification-logo p {
  font-size: 0.875rem;
  color: var(--text-color-light);
}

/* Team Section */
.team {
  background-color: var(--light-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

.team-member {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member.founder {
  border-top: 4px solid var(--imperial-gold);
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  height: 300px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  padding: 1.5rem 1.5rem 0.25rem;
  font-size: 1.5rem;
  color: var(--text-color);
}

.member-title {
  padding: 0 1.5rem 1rem;
  font-size: 1rem;
  color: var(--imperial-gold);
  font-weight: 500;
}

.member-bio {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-color-light);
}

/* Contact Section */
.contact {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.contact-info > p {
  margin-bottom: 2.5rem;
  color: var(--text-color-light);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-item .icon {
  width: 48px;
  height: 48px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--imperial-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.contact-item p {
  color: var(--text-color-light);
  font-size: 0.9rem;
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.contact-form > p {
  margin-bottom: 2rem;
  color: var(--text-color-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--text-color);
  background-color: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--imperial-gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  position: relative;
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* Footer Styles */
.footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1.5rem;
}

.tagline {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--imperial-gold);
  font-weight: 600;
}

.footer-links h3, .footer-contact h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  display: inline-block;
}

.footer-links h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background-color: var(--imperial-gold);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--imperial-gold);
}

.footer-contact p {
  margin-bottom: 0.75rem;
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--imperial-gold);
  transform: translateY(-3px);
}

.copyright {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero .container,
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-logo {
    grid-column: span 2;
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto 1.5rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 999;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .main-nav a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.1rem;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-toggle.active i:before {
    content: "00d"; /* Font Awesome close icon */
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.125rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-logo {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .header .container {
    height: 70px;
  }
  
  .logo {
    height: 50px;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 8rem 0 4rem;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .section-header p {
    font-size: 0.9rem;
  }
}

/* Blog Styles */
.blog-header {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 10rem 0 4rem;
  text-align: center;
}

.blog-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.blog-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray-400);
  font-size: 1.2rem;
}

.blog-grid {
  padding: 5rem 0;
  background-color: var(--white);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-content .date {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.blog-content h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-content .summary {
  color: var(--text-color-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  color: var(--imperial-gold);
  font-weight: 500;
  position: relative;
}

.read-more::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--imperial-gold);
  transition: width 0.3s ease;
}

.read-more:hover::after {
  width: 100%;
}

.blog-footer {
  background-color: var(--light-bg);
  padding: 3rem 0;
  text-align: center;
}

/* Blog Post Styles */
.blog-post {
  padding-top: 10rem;
}

.blog-post-header {
  margin-bottom: 2rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-color-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.back-link i {
  margin-right: 0.5rem;
}

.back-link:hover {
  color: var(--imperial-gold);
}

.blog-post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-meta {
  color: var(--text-color-light);
  margin-bottom: 1.5rem;
}

.post-meta .date {
  font-size: 0.9rem;
}

.blog-post-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-image img {
  width: 100%;
  height: auto;
}

.blog-post-content {
  margin-bottom: 3rem;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-color);
}

.blog-post-content p.lead {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.blog-post-content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  color: var(--text-color);
}

.blog-post-content ul, 
.blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-post-content li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.blog-post-content a {
  color: var(--imperial-gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.blog-post-content a:hover {
  border-color: var(--imperial-gold);
}

.blog-post-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-300);
}

.btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--imperial-gold);
  color: var(--imperial-gold);
}

.btn.btn-outline:hover {
  background-color: var(--imperial-gold);
  color: var(--white);
}

@media (max-width: 768px) {
  .blog-post-header h1 {
    font-size: 2rem;
  }
  
  .blog-post-content p.lead {
    font-size: 1.1rem;
  }
  
  .blog-post-content h2 {
    font-size: 1.5rem;
  }
  
  .blog-post-footer {
    flex-direction: column;
    gap: 1rem;
  }
  
  .blog-post-footer .btn {
    width: 100%;
  }
}

/* Animation styles */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header,
.about-content,
.collection-card,
.process-step,
.gallery-item,
.team-member,
.contact-info,
.contact-form {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.animated,
.about-content.animated,
.collection-card.animated,
.process-step.animated,
.gallery-item.animated,
.team-member.animated,
.contact-info.animated,
.contact-form.animated {
  opacity: 1;
  transform: translateY(0);
  animation: fadeIn 0.6s ease forwards;
}

/* Add delay to children items in grid layouts */
.collection-card:nth-child(2),
.gallery-item:nth-child(2),
.team-member:nth-child(2) {
  transition-delay: 0.1s;
}

.collection-card:nth-child(3),
.gallery-item:nth-child(3),
.team-member:nth-child(3) {
  transition-delay: 0.2s;
}

.collection-card:nth-child(4),
.gallery-item:nth-child(4) {
  transition-delay: 0.3s;
}

.collection-card:nth-child(5),
.gallery-item:nth-child(5) {
  transition-delay: 0.4s;
}

.collection-card:nth-child(6),
.gallery-item:nth-child(6) {
  transition-delay: 0.5s;
}

/* Add delay to process steps */
.process-step:nth-child(2) {
  transition-delay: 0.1s;
}

.process-step:nth-child(3) {
  transition-delay: 0.2s;
}

.process-step:nth-child(4) {
  transition-delay: 0.3s;
}

.process-step:nth-child(5) {
  transition-delay: 0.4s;
}