/* Holly Allott Costumes - Main Stylesheet */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-pink: #F5B5A8;
  --color-pink-light: #FFD1E3;
  --color-pink-medium: #FF88B8;
  --color-pink-dark: #e44b83;
  --color-coral: #FF6347;
  --color-teal: #2D9B8C;
  --color-dark: #2C2C2C;
  --color-gray: #F0F0F0;
  --color-text: #333333;
  --color-light-gray: #E8E8E8;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  hyperlink-color: var(--color-pink);
  background: #fff;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.logo {
  height: 160px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 1rem;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.7;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

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

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--color-pink-medium);
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #3a3a3a;
}

/* Container */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

.process-step {
  text-align: center;
}

.step-icon {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50% 50% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-icon.pink {
  background: var(--color-pink-light);
}

.step-icon.pink-medium {
  background: var(--color-pink-medium);
}

.step-icon.pink-dark {
  background: var(--color-pink-dark);
}

.step-icon svg {
  width: 60px;
  height: 60px;
}

.process-step h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--color-text);
}

.process-step p {
  color: #666;
  line-height: 1.8;
}

/* Gallery */
.gallery-section {
  background: white;
  padding: 4rem 0;
}

.gallery-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--color-text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-gray);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
  image-orientation: from-image;
  filter: grayscale(100%);
}

.gallery-item:hover img,
.gallery-item.in-view img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Testimonials */
.testimonials-section {
  background: white;
  padding: 4rem 0;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--color-text);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonial-card {
  background: var(--color-gray);
  padding: 2rem;
  border-radius: 8px;
}

.testimonial-card.pink-1 {
  background: var(--color-pink-light);
}

.testimonial-card.pink-2 {
  background: var(--color-pink-medium);
}

.testimonial-card.pink-3 {
  background: var(--color-pink-dark);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--color-text);
  min-height: 120px;
}

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

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ccc;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.9rem;
  color: #666;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Footer / Contact Section */
.contact-section {
  background: white;
  padding: 4rem 2rem;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

.contact-info p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.social-link {
  display: inline-block;
  margin-bottom: 3rem;
}

.social-link svg {
  width: 50px;
  height: 50px;
  transition: opacity 0.3s;
  color: var(--color-pink-dark);
}

.social-link:hover svg {
  opacity: 0.7;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--color-light-gray);
  border: none;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.submit-button {
  padding: 1.25rem;
  background: var(--color-dark);
  color: white;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
  font-family: inherit;
}

.submit-button:hover {
  background: #3a3a3a;
}

.footer-bottom {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-size: 0.9rem;
  border-top: 1px solid var(--color-light-gray);
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Pages */
.page-header {
  text-align: center;
  padding: 2rem 2rem 1rem;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--color-text);
  align-items: left;
  margin-bottom: 0;
}

.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  line-height: 1.8;
}

.content-section h2 {
  font-size: 2.5rem;
  margin: 3rem 0 1.5rem;
  color: var(--color-text);
}

.content-section h3 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--color-text);
}

.content-section p {
  margin-bottom: 1.5rem;
  color: #555;
  font-size: 1.05rem;
}

.content-section ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.content-section li {
  margin-bottom: 1rem;
  color: #555;
  font-size: 1.05rem;
}

/* FAQ Items */
.faq-item {
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  background: var(--color-gray);
}

.faq-item.pink-1 {
  background: var(--color-pink-light);
}

.faq-item.pink-2 {
  background: var(--color-pink-medium);
}

.faq-item.pink-3 {
  background: var(--color-pink-dark);
}

.faq-item h3 {
  margin-top: 0;
}

.faq-item a {
  color: var(--color-dark);
  font-weight: 500;
}

/* Measurement Items */
.measurement-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 3rem 0;
  align-items: center;
  padding: 2rem;
  border-radius: 8px;
  background: var(--color-gray);
}

.measurement-item.pink-1 {
  background: var(--color-pink-light);
}

.measurement-item.pink-2 {
  background: var(--color-pink-medium);
}

.measurement-item.pink-3 {
  background: var(--color-pink-dark);
}

.measurement-item .measurement-text {
  width: 100%;
}

.measurement-item .measurement-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
}

/* Desktop Layout - Alternating sides and text sizes */
@media (min-width: 769px) {
  .measurement-item {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
  }

  /* Odd items - image on right, larger text */
  .measurement-item:nth-child(odd) {
    flex-direction: row;
  }

  .measurement-item:nth-child(odd) .measurement-text {
    flex: 1;
  }

  .measurement-item:nth-child(odd) .measurement-image {
    flex: 0 0 350px;
    max-width: 350px;
  }

  .measurement-item:nth-child(odd) h3 {
    font-size: 2rem;
  }

  .measurement-item:nth-child(odd) p {
    font-size: 1.1rem;
  }

  /* Even items - image on left, smaller text */
  .measurement-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .measurement-item:nth-child(even) .measurement-text {
    flex: 1;
  }

  .measurement-item:nth-child(even) .measurement-image {
    flex: 0 0 280px;
    max-width: 280px;
  }

  .measurement-item:nth-child(even) h3 {
    font-size: 1.6rem;
  }

  .measurement-item:nth-child(even) p {
    font-size: 1rem;
  }
}

/* About Page Layout */


.about-item {
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}


.about-item:nth-child(1) {
  background: var(--color-pink-light);
}

.about-item:nth-child(2) {
  background: var(--color-pink-medium);
}

.about-item .about-text {
  width: 100%;
  order: 1;
}

.about-item .about-image {
  width: 100%;
  order: 2;
}

.about-item .about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Desktop Layout - Alternating sides */
@media (min-width: 769px) {
  .about-item {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
  }

  /* Reset order for desktop */
  .about-item .about-text,
  .about-item .about-image {
    order: 0;
  }

  /* First item - text on left, image on right */
  .about-item:nth-child(1) {
    flex-direction: row;
  }

  .about-item:nth-child(1) .about-text {
    flex: 1;
  }

  .about-item:nth-child(1) .about-image {
    flex: 0 0 450px;
    max-width: 450px;
  }

  /* Second item - image on left, text on right */
  .about-item:nth-child(2) {
    flex-direction: row;
  }

  .about-item:nth-child(2) .about-text {
    flex: 1;
  }

  .about-item:nth-child(2) .about-image {
    flex: 0 0 500px;
    max-width: 500px;
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .header {
    padding: 1.5rem 2rem;
  }

  .nav {
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .process-steps,
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .logo {
    height: 90px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    height: 800px;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: 8rem;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .gallery-section h2,
  .testimonials-section h2,
  .contact-info h2 {
    font-size: 2rem;
  }
}
