/* Index page specific styles for Leeds Dance Centre */

/* Hero Split Section */
.hero-split {
  background-color: var(--color-cream);
  padding: 0;
}

.hero-split-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
  max-height: 600px;
  overflow: hidden;
}

.hero-split-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem;
  background-color: var(--color-cream);
}

.seo-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hero-intro {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  opacity: 0.75;
  margin-bottom: 1.5rem;
  max-width: 95%;
}

.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-subheading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-split-right {
  background-color: var(--color-orange);
  position: relative;
  overflow: hidden;
  max-height: 600px;
}

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

/* Responsive for Hero Split */
@media (max-width: 768px) {
  .hero-split {
    padding: 0;
  }

  .hero-split-container {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .hero-split-left {
    padding: 3rem 2rem;
    text-align: center;
  }

  .hero-split-right {
    min-height: 300px;
    max-height: 400px;
  }
}

/* Hen Party Packages Section */
.hen-packages {
  background-color: #FAFAFA;
  padding: 5rem 2rem;
}

.packages-container {
  max-width: 1400px;
  margin: 0 auto;
}

.hen-packages .seo-h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2.75rem;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

.hen-packages .hero-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  margin-bottom: 2.5rem;
}

.packages-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.packages-subtitle {
  text-align: center;
  color: var(--color-text);
  opacity: 0.7;
  font-size: 1.125rem;
  margin-bottom: 4rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid #e0e0e0;
}

.package-card {
  background-color: white;
  padding: 2.5rem;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  background-color: #FAFAFA;
}

.package-card:nth-child(3n) {
  border-right: none;
}

.package-card:nth-child(n+4) {
  border-bottom: none;
}

.package-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  line-height: 1.2;
  background-color: var(--color-cream);
  width: fit-content;
  padding: 0 0.25rem;
}

.package-tagline {
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.75rem;
  opacity: 0.7;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
  flex-grow: 1;
}

.package-features li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.4;
}

.package-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-text);
  font-size: 1rem;
  opacity: 0.5;
}

.package-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.package-duration {
  font-size: 0.8125rem;
  color: var(--color-text);
  opacity: 0.6;
  margin-bottom: 0.25rem;
  font-style: italic;
}

.package-price {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  margin: 0;
}

/* Responsive Design for Packages */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card:nth-child(3n) {
    border-right: 1px solid #e0e0e0;
  }

  .package-card:nth-child(2n) {
    border-right: none;
  }

  .package-card:nth-child(n+4) {
    border-bottom: 1px solid #e0e0e0;
  }

  .package-card:nth-child(n+5) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .hen-packages {
    padding: 3rem 1rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    border: none;
  }

  .package-card {
    padding: 2rem 1.5rem;
    border: 1px solid #e0e0e0;
    margin-bottom: 1rem;
    border-right: 1px solid #e0e0e0;
  }

  .package-card:last-child {
    margin-bottom: 0;
  }

  .packages-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
}

/* View More Button */
.view-more-container {
  text-align: center;
  margin-top: 3rem;
}

.view-more-btn {
  background-color: white;
  color: var(--color-text);
  border: 2px solid var(--color-text);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  background-color: white;
  color: var(--color-text);
  border-color: var(--color-orange);
}

/* Package Links */
.package-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--color-orange);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.package-link:hover {
  color: var(--color-text);
}

.package-link span {
  margin-left: 0.25rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.package-link:hover span {
  transform: translateX(3px);
}

/* Dance Classes Section */
.dance-classes {
  background-color: var(--color-cream);
  padding: 5rem 2rem;
}

.dance-classes-container {
  max-width: 1400px;
  margin: 0 auto;
}

.dance-classes-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.dance-classes-subtitle {
  text-align: center;
  color: var(--color-text);
  opacity: 0.7;
  font-size: 1.125rem;
  margin-bottom: 4rem;
}

.dance-classes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 8rem;
  margin-top: 3rem;
  position: relative;
}

.dance-classes-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(247, 122, 54, 0.2);
  transform: translateX(-50%);
}

.dance-class-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 2rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(247, 122, 54, 0.2); /* Orange accent with transparency */
  position: relative;
  transition: transform 0.3s ease;
}

.dance-class-item:hover {
  transform: translateX(10px);
}

.dance-class-item:hover .class-number {
  opacity: 0.25;
  color: var(--color-orange);
}

.dance-class-item:nth-child(5),
.dance-class-item:nth-child(6) {
  border-bottom: none;
  padding-bottom: 0;
}

.class-number {
  grid-column: 1;
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-text);
  opacity: 0.15;
  line-height: 1;
  margin-top: -0.5rem;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.class-name {
  grid-column: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.class-description {
  grid-column: 2;
  color: var(--color-text);
  opacity: 0.7;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.class-link {
  grid-column: 2;
  color: var(--color-orange);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.class-link:hover {
  color: var(--color-text);
}

.class-link span {
  margin-left: 0.25rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.class-link:hover span {
  transform: translateX(3px);
}

/* Responsive for Dance Classes */
@media (max-width: 1024px) {
  .dance-classes-grid {
    gap: 3rem 4rem;
  }
}

@media (max-width: 768px) {
  .dance-classes {
    padding: 3rem 1rem;
  }

  .dance-classes-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .dance-classes-grid::before {
    display: none;
  }

  .dance-class-item {
    gap: 0 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(247, 122, 54, 0.2);
  }

  .dance-class-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .class-number {
    font-size: 2.5rem;
  }

  .class-name {
    font-size: 1.5rem;
  }
}

/* Wedding Dance Section */
.wedding-dance {
  background-color: white;
  padding: 6rem 2rem;
}

.wedding-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
}

.wedding-container::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 70%;
  width: 1px;
  background-color: var(--color-peach);
  opacity: 0.5;
}

.wedding-images {
  position: relative;
  height: 500px;
}

.wedding-img-back,
.wedding-img-front {
  position: absolute;
  width: 70%;
  height: 70%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wedding-img-back {
  top: 0;
  left: 0;
  z-index: 1;
}

.wedding-img-front {
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 75%;
  height: 75%;
}

.wedding-content {
  padding-left: 2rem;
}

.wedding-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.wedding-description {
  color: var(--color-text);
  opacity: 0.7;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.wedding-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.wedding-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  color: var(--color-text);
  font-size: 1rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--color-orange);
  color: white;
  border-radius: 50%;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.wedding-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 2px solid var(--color-text);
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wedding-btn:hover {
  background-color: var(--color-text);
  color: white;
}

.wedding-location {
  margin-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.5;
}

/* Responsive for Wedding Section */
@media (max-width: 1024px) {
  .wedding-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .wedding-container::after {
    display: none;
  }

  .wedding-images {
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
  }

  .wedding-content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .wedding-dance {
    padding: 3rem 1rem;
  }

  .wedding-images {
    height: 350px;
  }

  .wedding-img-back,
  .wedding-img-front {
    width: 65%;
    height: 65%;
  }

  .wedding-img-front {
    width: 70%;
    height: 70%;
  }

  .wedding-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }
}

/* Location Section */
.location-section {
  background-color: var(--color-cream);
  padding: 5rem 2rem;
}

.location-container {
  max-width: 1400px;
  margin: 0 auto;
}

.location-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 3rem;
  text-transform: capitalize;
  letter-spacing: -0.01em;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.location-content::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 70%;
  width: 1px;
  background-color: var(--color-orange);
  opacity: 0.3;
}

.location-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.location-description {
  color: var(--color-text);
  opacity: 0.7;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.location-features {
  list-style: none;
  margin-bottom: 2rem;
}

.location-features li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  position: relative;
}

.location-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-orange);
  border-radius: 50%;
}

.location-areas {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
  padding-top: 1rem;
  border-top: 1px solid rgba(247, 122, 54, 0.2);
}

.location-map {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.location-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive for Location Section */
@media (max-width: 1024px) {
  .location-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .location-content::before {
    display: none;
  }

  .location-map iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .location-section {
    padding: 3rem 1rem;
  }

  .location-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 2rem;
  }

  .location-subtitle {
    font-size: 1.5rem;
  }

  .location-description {
    font-size: 1rem;
  }

  .location-map iframe {
    height: 300px;
  }
}