
html {
  scroll-behavior: smooth;
}

/* Global Styles */
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-color: #efe1e1;
    color: #333;
    line-height: 1.6;
  }
  
/* Header Base Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #fff;
  position: relative;
  z-index: 1000;
}

.logo img {
  width: 90px;
  height: auto;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #bfa15c;
}

/* Hamburger Menu Button (hidden on desktop) */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #333;
}

/* ====== MOBILE STYLES ====== */
@media (max-width: 768px) {
  header {
    padding: 15px 25px;
  }

  .logo img {
    width: 120px;
  }
.split-content ul li{
text-align: left;
}
/* Scroll Down Button */
.scroll-down {
bottom:20px
}
  /* Hide navigation by default */
  .nav {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px;
    right: 25px;
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }

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

  /* Show hamburger icon */
  .menu-toggle {
    display: block;
  }

  .nav a {
    margin: 10px 0;
    color: #333;
    font-size: 16px;
  }
}

  
/* Hero Section */
.hero {
    position: relative;
    height: 90vh; /* nearly full screen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
  }
  
  /* Overlay on hero image */
  .hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* dark overlay for contrast */
    z-index: 1;
  }
  
  /* Hero Text Styling */
  .hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
  }
  
  .hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  
  .hero-text p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: #f0e6e6;
  }
/* Scroll Down Button */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 3;
    animation: bounce 2s infinite;
    transition: border-color 0.3s, transform 0.3s;
  }
  
  .scroll-down:hover {
    border-color: #bfa15c;
    transform: translateX(-50%) scale(1.1);
  }
  
  .scroll-down span {
    display: block;
    width: 10px;
    height: 10px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 4px;
    transition: border-color 0.3s;
  }
  
  .scroll-down:hover span {
    border-color: #bfa15c;
  }
  
  /* Bounce animation */
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translate(-50%, 0);
    }
    40% {
      transform: translate(-50%, -10px);
    }
    60% {
      transform: translate(-50%, -5px);
    }
  }
  
  /* Smooth Scroll */
  html {
    scroll-behavior: smooth;
  }
    
  .page-section {
    padding: 80px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .page-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .page-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  
  .page-section p, .page-section ul {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .page-section ul {
    list-style-type: disc;
    padding-left: 40px;
    text-align: left;
  }
  
  .section-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 10px;
  }
  
  .about-logo img {
    max-width: 150px;
    margin-bottom: 30px;
  }
  
  /* Footer Styles */
.footer {
    background-color: #efe1e1;
    color: #333;
    padding: 60px 50px 20px;
    border-top: 1px solid rgba(191,161,92,0.3);
    font-size: 1rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #bfa15c;
    margin-bottom: 15px;
  }
  
  .footer-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #bfa15c;
    margin-bottom: 10px;
  }
  
  .footer-column p {
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-links a,
  .footer-column a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
  }
  
  .footer-links a:hover,
  .footer-column a:hover {
    color: #bfa15c;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(191,161,92,0.3);
    margin-top: 40px;
    font-size: 0.9rem;
    color: #555;
  }
  
  
  /* Contact Form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
  }
  
  .contact-form button {
    padding: 12px 20px;
    background-color: #bfa15c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #a48846;
  }
    

  /* Featured Glassware Section */
.featured-glassware {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: #fff;
    text-align: center;
    margin-top: 40px;
  }
  
  .featured-glassware .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }
  
  .featured-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .featured-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .btn {
    background-color: #bfa15c;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .btn:hover {
    background-color: #a8904f;
    transform: scale(1.05);
  }
  
  .page-section {
    max-width: 850px;
    margin: 100px auto;
    padding: 0 20px;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    text-align: center;
  }
  
  .page-section p {
    margin-bottom: 25px;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  /* Subtle fade-in when scrolling */
  .page-section p.visible {
    opacity: 1;
    transform: translateY(0);
  }
  

  /* Hero Section - Reuse global hero */
.glassware-hero {
    height: 50vh;
    background-position: center;
    background-size: cover;
    position: relative;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    color: #f0e6e6;
  }
  
  /* Split Sections */
  .split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 100px 12%;
    background-color: #fff;
  }
  
  .split-section.reverse {
    flex-direction: row-reverse;
    background-color: #f8f6f6;
  }
  
  .split-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }
  
  .split-content {
    flex: 1;
    max-width: 600px;
  }
  
  .split-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #bfa15c;
    margin-bottom: 20px;
  }
  
  .split-content p {
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
  }
  
  .split-content ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
  }
  
  .split-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
  }
  
  .split-content ul li::before {
    content: "•";
    color: #bfa15c;
    position: absolute;
    left: 0;
    font-size: 1.3rem;
  }
  
  /* CTA Section */
  .cta-section {
    text-align: center;
    padding: 120px 20px;
    background-color: #fff;
  }
  
  .cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #bfa15c;
    margin-bottom: 20px;
  }
  
  .cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: #333;
  }
  
  .btn {
    background-color: #bfa15c;
    color: #fff;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background-color: #a8904f;
    transform: scale(1.05);
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .split-section {
      flex-direction: column;
      text-align: center;
    }
  
    .split-image img {
      max-width: 100%;
    }
  }
  

  /* ========================= */
/*           LOADER          */
/* ========================= */
/* ===== LOADER ===== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Logo Styling */
.loader-logo img {
  width: 120px;
  margin-bottom: 20px;
  animation: fadeIn 1.5s ease-in-out infinite alternate;
}

/* Elegant gold ring animation */
.loader-ring {
  width: 50px;
  height: 50px;
  border: 3px solid #bfa15c;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

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

@keyframes fadeIn {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
