html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

/* 🔽 HEADER + NAVIGATION */
header {
  background: white;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: 80px;
}

.logo img {
  height: 75px;
  max-height: 100%;
  object-fit: contain;
  position: relative;
  top: 0;
}

nav a {
  color: black;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 5px 8px;
  border-radius: 3px;
  transition: background 0.2s;
}

nav a:hover {
  background: #eee;
  text-decoration: none;
}

nav a#orderBtn {
  background-color: #007bff;
  color: white;
  font-size: 14px;
  padding: 6px 12px;
}

/* 🔵 DARK BLUE HEADINGS */
.hero h1,
.hero p,
.categories-title,
.about-section-title,
.about h3,
.album-slider h2,
footer h2,
.modal-content h2 {
  color: #0b3d91 !important;
}

/* 🔷 HERO */
.hero {
  background: url("../images/pexels.jpg") center/cover no-repeat;
  text-align: center;
  padding: 40px 20px;
  color: white;
}
.hero h1 {
  font-size: 36px;
}
.hero p {
  font-size: 20px;
}

/* 🎞️ ALBUM SLIDER */
.album-slider {
  text-align: center;
  padding: 40px 0;
  background: #fff;
  position: relative;
}

.slider-container {
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: relative;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0;
}

/* Dot Indicators */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
  background-color: #333;
}

/* Navigation Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s ease;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

/* 📦 PRODUCT CATEGORIES */
.categories-title {
  text-align: center;
  font-size: 32px;
  margin-top: 50px;
  margin-bottom: 20px;
}
.categories-wrapper {
  background: #fff;
  padding: 20px;
}
.categories {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.category {
  background: white;
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  width: 200px;
}

/* 👨‍💼 ABOUT SECTION */
.about-section-title {
  text-align: center;
  font-size: 32px;
  margin-top: 50px;
  margin-bottom: 10px;
}
.about {
  background: #fff;
  padding: 40px;
  max-width: 900px;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: justify;
  line-height: 1.8;
}
.about h3 {
  font-size: 24px;
  margin-top: 20px;
}
.about ul {
  padding-left: 20px;
}
.about ul li {
  margin-bottom: 10px;
}

/* 📞 FOOTER */
footer {
  background: #333;
  color: white;
  padding: 20px;
  text-align: center;
}
footer a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}
footer a:hover {
  text-decoration: underline;
}

/* ✅ MODALS */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  padding: 20px;
  width: 95%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  position: relative;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}
.order-form label {
  display: block;
  margin-top: 12px;
  font-weight: bold;
}
.order-form input,
.order-form select {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}
.total-display {
  margin-top: 15px;
  font-size: 20px;
  font-weight: bold;
  text-align: right;
}
.order-submit {
  background: #ff9800;
  color: #fff;
  padding: 12px;
  width: 100%;
  border: none;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
}

/* 🔔 SIGNUP SUCCESS MODAL */
#signupSuccessModal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  font-family: 'Arial', sans-serif;
}
#signupSuccessModal .modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
#signupSuccessModal .modal-content h2 {
  margin-bottom: 10px;
  font-size: 24px;
}
#signupSuccessModal .modal-content p {
  font-size: 16px;
  margin-bottom: 20px;
}
#signupSuccessModal .btn {
  padding: 10px 20px;
  margin: 10px;
  text-decoration: none;
  color: #fff;
  background-color: #007bff;
  border-radius: 5px;
  font-weight: bold;
}
#signupSuccessModal .btn-secondary {
  background-color: #6c757d;
}
#signupSuccessModal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  font-size: 24px;
  cursor: pointer;
}
@keyframes fadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
#signupFeedback {
  margin-top: 20px;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
.modal-buttons button {
  margin: 10px;
  padding: 10px 20px;
  border: none;
  background: #2196f3;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
.modal-buttons button:first-child {
  background: #4caf50;
}

/* 📦 Base container styling */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw;
  box-sizing: border-box;
}

/* 📱 Add extra spacing on tablet and up */
@media (min-width: 768px) {
  .container {
    padding: 0 4vw;
  }
}

#orderSuccessModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#orderSuccessModal .modal-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
}

#orderSuccessModal .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  cursor: pointer;
}

.logo-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.company-logo {
  max-height: 60px;
  width: auto;
}

.studio-logo {
  max-height: 60px;
  border-radius: 6px;
  width: auto;
}

.order-now-btn {
  background: #28a745;
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  margin-left: 10px;
  text-decoration: none;
}

.order-now-btn:hover {
  background-color: #34495e;
  color: #fff;
}
