:root {
  --gold: #D4AF37;
  --gold-light: #E8C874;
  --black: #000000;
  --white: #FFFFFF;
  --gray: #F5F5F5;
  --dark-gray: #222222;
  --medium-gray: #888888;
  --section-padding: 100px;
  --container-width: 1200px;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark-gray);
  line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: var(--section-padding) 0;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 12px 24px;
  border: 2px solid var(--white);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  height: 80px;
}

/* Breadcrumb Navigation */
.breadcrumb {
  position: static;
  background: var(--gray);
  padding: 10px 0;
  margin-top: 80px;
  box-shadow: none;
  height: auto;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: '>';
  margin: 0 10px;
  color: var(--medium-gray);
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
  color: var(--medium-gray);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  height: 80px;
}

.nav-links a {
  color: var(--black);
  transition: color 0.3s;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--gold);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--black);
  z-index: 1001;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 80px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--white);
  background-image: url("data:image/svg+xml;utf8,<svg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M10 50 Q30 30 50 50' stroke='%23E8C874' stroke-width='2' fill='none' stroke-opacity='0.25'/><circle cx='30' cy='30' r='8' stroke='%23D4AF37' stroke-width='1.5' fill='none' stroke-opacity='0.18'/></svg>");
  background-repeat: repeat;
  z-index: -1;
}

.hero-overlay-bottom {
  position: relative;
  background-color: rgba(0,0,0,0.7);
  padding: 40px;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  margin-bottom: 50px;
  backdrop-filter: blur(2px);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  color: var(--gold);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Section */
.bio {
  text-align: center;
}

.bio-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.bio-text {
  text-align: left;
}

.bio-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.bio-image img {
  display: block;
  transition: transform 0.3s ease;
}

.bio-image:hover img {
  transform: scale(1.03);
}

.performance-list {
  list-style: none;
  margin: 20px 0;
}

.performance-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.performance-list i {
  color: var(--gold);
}

/* History Section */
.history {
  background-color: var(--gray);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 40px auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
}

.timeline-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border-left: 4px solid var(--gold);
  position: relative;
  width: calc(50% - 30px);
}

.timeline-item:nth-child(odd) {
  align-self: flex-start;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
}

.timeline-date {
  position: absolute;
  top: -15px;
  left: -15px;
  background: var(--gold);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--gray);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 3rem;
  color: var(--gold);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
}

.testimonial-author {
  font-weight: 600;
  color: var(--medium-gray);
}

/* Gallery Section */
.gallery {
  background-color: var(--gray);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.media-grid img, 
.media-grid .video-container {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.media-grid img:hover,
.media-grid .video-container:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Specific image positioning */
.media-grid img:nth-child(9) {
  object-position: center 30%;
}

.media-grid img:nth-child(11) {
  object-position: center 35%;
}

.media-grid img:nth-child(12) {
  object-position: center 65%;
}

.media-grid img:nth-child(13) {
  object-position: center 25%;
}

.media-grid img:nth-child(14) {
  object-position: center 35%;
}

.media-grid img:nth-child(15) {
  object-position: center 10%;
}

.video-container {
  position: relative;
  background: var(--black);
}

.video-container video,
.video-container iframe,
.video-container audio {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.video-container audio {
  height: 80px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Custom audio player styling */
.video-container.audio-container {
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #e0e0e0;
}

.video-container.audio-container::before {
  content: '🎵';
  font-size: 2rem;
  margin-bottom: 10px;
  filter: grayscale(100%) brightness(0%);
}

.video-container.audio-container::after {
  content: 'In My Mothers Eyes - Mio Mitchinson and James Frampton';
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--black);
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}

/* Calendly Widget Styling */
.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
  background-color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
}

#contact-form input,
#contact-form textarea,
#contact-form select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  width: 100%;
}

#contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-status {
  min-height: 20px;
  font-size: 0.9rem;
}

.direct-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.direct-contact a {
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.direct-contact a:hover {
  color: var(--gold);
}

.direct-contact i {
  width: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: var(--black);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--gold);
}

.pricing-info {
  background: var(--gray);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.pricing-info h4 {
  margin-bottom: 10px;
}

.pricing-info p {
  margin-bottom: 5px;
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--gold);
}

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

.footer-bottom p {
  margin-bottom: 5px;
}

.footer-bottom a {
  color: var(--gold);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Booking Page Styles */
.booking-page {
  margin-top: 0;
}

.booking-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--white);
  background-image: url("data:image/svg+xml;utf8,<svg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M10 50 Q30 30 50 50' stroke='%23E8C874' stroke-width='2' fill='none' stroke-opacity='0.25'/><circle cx='30' cy='30' r='8' stroke='%23D4AF37' stroke-width='1.5' fill='none' stroke-opacity='0.18'/></svg>");
  background-repeat: repeat;
  z-index: -1;
}

@media (max-width: 768px) {
  .booking-hero .hero-background {
    object-position: center center;
  }
}

.hero-overlay {
  background-color: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.booking-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  color: var(--gold);
}

.booking-hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Booking Info */
.booking-info {
  padding: 80px 0;
  background: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.info-card {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  background: var(--gray);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.info-card h3 {
  margin-bottom: 15px;
}

/* Pricing Section */
.booking-pricing {
  padding: 80px 0;
  background: var(--gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.pricing-card h3 {
  margin-bottom: 15px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-top: 20px;
}

.pricing-card li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.pricing-card li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gold);
}

.pricing-note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: var(--medium-gray);
}

/* Booking Form Section */
.booking-form-section {
  padding: 80px 0;
  background: var(--white);
}

.booking-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.booking-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-contact .btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--dark-gray);
  border-color: var(--dark-gray);
  margin-bottom: 10px;
}

.booking-contact .btn-outline:hover {
  background: var(--dark-gray);
  color: var(--white);
}

.faq-link {
  margin-top: 30px;
}

.faq-link h4 {
  margin-bottom: 15px;
}

.faq-link a {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
}

.faq-link a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--gray);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.faq-item {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
  color: var(--gold);
  margin-bottom: 15px;
}

/* Calendar Section Styles */
.calendar-section {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.calendar-section h3 {
  color: var(--dark-gray);
  margin-bottom: 1rem;
  text-align: center;
}

.calendar-section p {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--medium-gray);
}

.calendar-container {
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.calendar-container iframe {
  border-radius: 8px;
  background: var(--white);
}

.calendar-instructions {
  background: var(--gray);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.calendar-instructions p {
  margin-bottom: 1rem;
  text-align: left;
}

.calendar-instructions ol {
  margin-left: 1.5rem;
  color: var(--dark-gray);
}

.calendar-instructions li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }
  
  .bio-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .bio-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    width: calc(100% - 30px);
    margin-left: 30px;
  }
  
  .booking-container {
    grid-template-columns: 1fr;
  }
  
  .booking-hero {
    height: 50vh;
  }
  
  .calendly-inline-widget {
    height: 600px;
  }
  
  .calendar-container iframe {
    height: 400px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a:not(.btn-gold) {
    display: none;
  }
  
  .nav-links a.btn-gold {
    display: block;
    margin: 0;
    padding: 15px 30px;
    background: var(--gold);
    color: var(--black);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
  }
  

  
  .nav-links a:last-child {
    border-bottom: none;
  }
  
  .nav-links a.btn-gold {
    background: var(--gold);
    color: var(--black);
  }
  
  .hero-overlay-bottom {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-gold,
  .btn-outline {
    width: 100%;
  }
  
  .booking-hero h1 {
    font-size: 2.5rem;
  }
  
  .booking-hero p {
    font-size: 1.1rem;
  }
  
  .booking-info, 
  .booking-pricing,
  .booking-form-section,
  .faq-section {
    padding: 60px 0;
  }
  
  .calendly-inline-widget {
    height: 500px;
  }
  
  .calendar-container iframe {
    height: 350px;
  }
  
  .calendar-section {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 50px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .timeline-item {
    padding: 20px;
  }
  
  .info-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-hero h1 {
    font-size: 2rem;
  }
  
  .calendly-inline-widget {
    height: 400px;
  }
}

/* Focus Styles for Accessibility */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--gold-light);
}

/* Section Reveal Animation */
section {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
section.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-image,
  .booking-hero .hero-background {
    object-fit: cover;
  }
}
