/* Global Styles */
:root {
  --primary-color: #d4145a;
  --secondary-color: #ffc107;
  --accent-color: #9c27b0;
  --dark-color: #333333;
  --light-color: #f9f5eb;
  --gold: #d4af37;
  --royal-blue: #4169e1;
  --deep-red: #8b0000;
  --text-color: #333;
  --border-radius: 4px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

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

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  bottom: -10px;
  left: 25%;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.primary-btn {
  background-color: var(--primary-color);
  color: white;
}

.primary-btn:hover {
  background-color: #b01048;
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.secondary-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

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

.outline-btn:hover {
  background-color: var(--dark-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.logo-container h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

.logo-container h1 span {
  color: var(--dark-color);
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 5px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://i.imgur.com/XgTxwGu.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Featured Collections */
.featured-collections {
  padding: 5rem 5%;
  background-color: white;
}

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

.category {
  text-align: center;
  transition: var(--transition);
  padding: 1rem;
  border-radius: var(--border-radius);
}

.category:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.category-img {
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category:hover .category-img img {
  transform: scale(1.1);
}

.category h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

/* Trending Designs */
.trending-designs {
  padding: 5rem 5%;
  background-color: var(--light-color);
  position: relative;
}

.trending-carousel {
  display: flex;
  overflow-x: hidden;
  gap: 2rem;
  padding: 1rem 0;
}

.trending-item {
  flex: 0 0 calc(33.333% - 1.33rem);
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.trending-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.trending-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: var(--transition);
}

.trending-item:hover .trending-info {
  transform: translateY(0);
}

.trending-item:hover img {
  transform: scale(1.1);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: none;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-controls button:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Custom Tailoring */
.custom-tailoring {
  padding: 5rem 5%;
  background-color: white;
}

.tailoring-process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.process-step {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--border-radius);
  background-color: var(--light-color);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-10px);
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.tailoring-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Client Showcase */
.client-showcase {
  padding: 5rem 5%;
  background-color: var(--light-color);
}

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

.showcase-item {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: var(--transition);
}

.showcase-item:hover .showcase-overlay {
  transform: translateY(0);
}

.showcase-item:hover img {
  transform: scale(1.1);
}

.showcase-overlay p {
  margin-bottom: 0.5rem;
  font-style: italic;
}

.showcase-overlay span {
  font-weight: 600;
}

.showcase-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Appointments */
.appointments {
  padding: 5rem 5%;
  background-color: white;
}

.appointment-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.appointment-info {
  flex: 1 1 400px;
}

.appointment-info h3 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.appointment-info ul {
  margin-bottom: 2rem;
}

.appointment-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.appointment-info li i {
  color: var(--primary-color);
  margin-right: 1rem;
}

.appointment-types {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.appointment-type {
  flex: 1;
  padding: 1.5rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.appointment-type:hover {
  transform: translateY(-5px);
}

.appointment-type i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.appointment-form {
  flex: 1 1 400px;
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: "Poppins", sans-serif;
  transition: var(--transition);
}

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

/* Testimonials */
.testimonials {
  padding: 5rem 5%;
  background-color: var(--light-color);
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial {
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 0 auto;
}

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.8;
}

.testimonial-content::before {
  content: "\201C";
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(212, 20, 90, 0.2);
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.author-info h4 {
  margin-bottom: 0.2rem;
}

.author-info p {
  margin-bottom: 0;
  color: #666;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

/* About Us */
.about-us {
  padding: 5rem 5%;
  background-color: white;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.about-image {
  flex: 1 1 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-text {
  flex: 1 1 500px;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  text-align: center;
}

.highlight span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.highlight p {
  margin-bottom: 0;
  font-weight: 500;
}

/* Newsletter */
.newsletter {
  padding: 4rem 5%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1583391733956-3750e0ff4e8b?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  margin-top: 2rem;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  font-family: "Poppins", sans-serif;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  padding: 0 1.5rem;
  border-radius: 0;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding-top: 4rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  padding: 0 5%;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.footer-logo h2 span {
  color: var(--primary-color);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
  margin-bottom: 2rem;
}

.footer-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -8px;
  left: 0;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: #ddd;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-info li i {
  margin-right: 1rem;
  color: var(--primary-color);
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.store-hours {
  margin-top: 1.5rem;
}

.store-hours h3 {
  font-size: 1.2rem;
}

.store-hours p {
  color: #ddd;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .trending-item {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 1rem 2%;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 70px;
    background-color: white;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .hamburger {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .trending-item {
    flex: 0 0 100%;
  }

  .appointment-types {
    flex-direction: column;
  }

  .appointment-type {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .process-step {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
    margin-bottom: 1rem;
  }

  .about-highlights {
    flex-direction: column;
    gap: 1.5rem;
  }
}
