/* Basic Reset & Body Styles */
body, h1, h2, h3, p, ul, li, a, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  font-size: 16px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

a {
  text-decoration: none;
  color: #5a0fc8; /* A purple shade for links */
}

a:hover {
  color: #3e0a8a;
  text-decoration: underline;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-6 { margin-bottom: 2.5rem; }
.mb-8 { margin-bottom: 3rem; }
.mb-12 { margin-bottom: 4rem; }

.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.bg-gray-50 { background-color: #f9fafb; }

.section-title {
    font-size: 2.5rem; /* Responsive font size below */
    font-weight: bold;
    color: #333;
}

.cta-link {
    color: #5a0fc8;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block; /* Ensure it behaves like a block for margin/padding if needed */
}

.cta-link:hover {
    color: #3e0a8a;
    text-decoration: underline;
}

/* Header & Navigation */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

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

.main-nav a {
  color: #555;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #5a0fc8;
  text-decoration: none;
}

.social-media-icons a {
  color: #555;
  margin-left: 1rem;
  font-size: 1.2rem;
  text-decoration: none;
}

.social-media-icons a:hover {
  color: #5a0fc8;
}

.nav-toggle {
  display: none; /* Hidden by default, shown on mobile */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001; /* Ensure it's above other header content if nav is absolute */
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: #333;
  left: 0;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Hero Section */
#hero {
  height: 100vh;
  background-image: url("../images/hero-image.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

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

.hero-content p {
  font-size: 1.25rem; 
  margin-bottom: 2rem;
  line-height: 1.5;
}

.cta-button {
  background-color: #5a0fc8;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block; /* Added for proper spacing and behavior */
}

.cta-button:hover {
  background-color: #3e0a8a;
  color: #fff;
  text-decoration: none;
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-height: 500px; /* Consistent with React version */
    object-fit: cover; /* Consistent with React version */
}

.about-text {
    max-width: 650px; /* Limit text width for readability */
    text-align: left;
}

.about-text p {
    font-size: 1.05rem;
    color: #555;
}

/* Collections Section */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.collection-item {
    background-color: #f9fafb; /* bg-gray-50 */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.collection-item img {
    width: 100%;
    height: 320px; /* h-80 */
    object-fit: cover;
}

.collection-item-content {
    padding: 1.5rem; /* p-6 */
}

.collection-item-content h3 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600; /* font-semibold */
    color: #333;
    margin-bottom: 0.75rem; /* mb-3 */
}

.collection-item-content p {
    color: #555; /* text-gray-600 */
    margin-bottom: 1rem; /* mb-4 */
    line-height: 1.6; /* leading-relaxed */
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.service-item {
    background-color: #fff; /* bg-white for items on bg-gray-50 section */
    padding: 2rem; /* p-8 */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-item-icon {
    font-size: 3rem; /* text-5xl */
    margin-bottom: 1.5rem; /* mb-6 */
    color: #5a0fc8;
}

.service-item h3 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600; /* font-semibold */
    color: #333;
    margin-bottom: 0.75rem; /* mb-3 */
}

.service-item p {
    color: #555; /* text-gray-600 */
    line-height: 1.6; /* leading-relaxed */
    margin-bottom: 1.5rem; /* Added for spacing before link */
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.testimonial-item {
    background-color: #f9fafb; /* bg-gray-50 */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.testimonial-item img {
    width: 96px; /* w-24 */
    height: 96px; /* h-24 */
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem; /* mb-6 */
    object-fit: cover;
    border: 4px solid #e9d5ff; /* border-purple-200 like */
}

.testimonial-item blockquote {
    color: #555; /* text-gray-600 */
    font-style: italic;
    margin-bottom: 1.5rem; /* mb-6 */
    line-height: 1.6;
}

.testimonial-item .author {
    color: #333; /* text-gray-800 */
    font-weight: 600; /* font-semibold */
}

.testimonial-item .location {
    color: #777; /* text-gray-500 */
    font-size: 0.875rem; /* text-sm */
}

/* Press Section */
.press-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem; /* md:gap-12 */
}

.press-logo-item {
    transition: transform 0.3s ease;
}

.press-logo-item:hover {
    transform: scale(1.1);
}

.press-logo-item .logo-placeholder {
    height: 4rem; /* h-16 */
    width: 10rem; /* w-40 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555; /* text-gray-600 */
    border: 1px solid #ddd; /* border-gray-300 */
    border-radius: 6px; /* rounded-md */
    padding: 0.5rem; /* p-2 */
    background-color: #fff; /* bg-white */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* shadow-md */
    font-size: 0.9rem;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.blog-post-item {
    background-color: #f9fafb; /* bg-gray-50 */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.blog-post-item img {
    width: 100%;
    height: 256px; /* h-64 */
    object-fit: cover;
}

.blog-post-content {
    padding: 1.5rem; /* p-6 */
}

.blog-post-content .date {
    font-size: 0.875rem; /* text-sm */
    color: #5a0fc8; /* text-purple-600 */
    margin-bottom: 0.5rem; /* mb-2 */
}

.blog-post-content h3 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    color: #333;
    margin-bottom: 0.75rem; /* mb-3 */
}

.blog-post-content p {
    color: #555; /* text-gray-600 */
    margin-bottom: 1rem; /* mb-4 */
    line-height: 1.6;
}

/* Contact Section */
.contact-form-container {
    max-width: 800px; /* max-w-3xl */
    margin-left: auto;
    margin-right: auto;
    background-color: #fff; /* bg-white */
    padding: 2rem; /* p-8 md:p-12 */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); /* shadow-xl */
}

.contact-form label {
    display: block;
    color: #4a5568; /* text-gray-700 */
    font-weight: 600; /* font-semibold */
    margin-bottom: 0.5rem; /* mb-2 */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem; /* px-4 py-3 */
    border: 1px solid #cbd5e0; /* border-gray-300 */
    border-radius: 6px; /* rounded-lg */
    margin-bottom: 1.5rem; /* space-y-6 implies margin on each form group */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #5a0fc8; /* focus:ring-purple-500 */
    box-shadow: 0 0 0 2px rgba(90, 15, 200, 0.2); /* focus:ring-2 focus:ring-purple-500 */
}

.contact-form textarea {
    min-height: 120px; /* rows="5" approx */
    resize: vertical;
}

.contact-info {
    margin-top: 3rem; /* mt-12 */
    color: #4a5568; /* text-gray-700 */
}

.contact-info p {
    font-size: 1rem; /* text-lg */
    margin-bottom: 0.5rem; /* mb-2 */
}

.contact-info strong {
    color: #2d3748;
}

.contact-info a {
    color: #5a0fc8;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        gap: 3rem;
    }
    .about-image {
        flex-basis: 40%;
    }
    .about-text {
        flex-basis: 60%;
    }
    .collections-grid,
    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-content p {
        font-size: 1.4rem;
    }
    .section-title {
        font-size: 2.8rem;
    }
    .contact-form-container {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .collections-grid,
    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
     .hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 767px) {
  .main-nav {
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 100%; 
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    border-top: 1px solid #eee;
  }

  .main-nav.active {
    display: flex; 
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  .main-nav li {
    width: 100%;
    text-align: center;
  }
  .main-nav a {
    display: block;
    padding: 0.5rem 0;
  }

  .nav-toggle {
    display: block;
  }
  
  .social-media-icons {
    display: none; 
  }

  .nav-toggle.active .hamburger {
    background-color: transparent; /* Make middle line disappear */
  }
  .nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
   .section-title {
        font-size: 2rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #2d3748; /* bg-gray-800 */
    color: #a0aec0; /* text-gray-300 */
    padding: 3rem 0; /* py-12 */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    color: #fff;
    margin-bottom: 1rem;
}

.footer-column p,
.footer-column ul li a {
    font-size: 0.875rem; /* text-sm */
    line-height: 1.6;
    color: #a0aec0;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem; /* Simulates space-y-2 */
}

.footer-column ul li a:hover {
    color: #8b5cf6; /* hover:text-purple-400 */
    text-decoration: underline;
}

.footer-social-icons {
    display: flex; /* Added for horizontal layout */
    gap: 1rem; /* Added for spacing between icons */
}

.footer-social-icons a {
    color: #a0aec0;
    /* margin-right: 1rem; Removed, using gap now */
    font-size: 1.5rem; /* text-2xl */
    transition: color 0.3s ease;
}

.footer-social-icons a:hover {
    color: #8b5cf6;
}

.footer-bottom {
    border-top: 1px solid #4a5568; /* border-gray-700 */
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem; /* text-sm */
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

