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

body, html {
  font-family: 'Raleway', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
  letter-spacing: 0.3px;
  font-weight: 300;
}

h2 {
  font-weight: normal;
}

/* Alert Banner */
.alert-banner {
  background: #dc3545;
  color: white;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.alert-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.alert-message {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.book-now-btn {
  background: white;
  color: #dc3545;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.book-now-btn:hover {
  background: transparent;
  color: white;
  transform: translateY(-1px);
}

/* Adjust hero section to account for fixed banner */
.hero-section {
  /* margin-top: 60px; */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Video Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 aspect ratio */
  height: 100vh;
  transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16/9) {
  .video-wrapper {
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
  }
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  padding: 2rem 3rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.hero-overlay h1 {
  font-family: 'Birthstone', cursive;
  font-size: 10rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-overlay p {
  font-size: 1.3rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  line-height: 2.5rem;
}

.hero-overlay p span {
  text-transform: uppercase;
}

/* Main Content */
.main-content {
  background: #fff;
  position: relative;
  z-index: 3;
}

/* Personalized Video Section */
.personalized-video-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
}

.personalized-video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/bg_fabric.png');
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.05;
  z-index: 1;
}

.personalized-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.personalized-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  line-height: 2.5rem;

  span {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 1.5rem;
    line-height: 1rem;
    opacity: 0.7;
  }
}

.personalized-text .intro {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 300;
}

.personalized-copy {
  font-size: 1.1rem;
  line-height: 1.7;
}

.personalized-copy p {
  margin-bottom: 1.5rem;
}

.personalized-copy p:last-child {
  margin-bottom: 0;
}

.personalized-video-wrapper {
  aspect-ratio: 16 / 9;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.personalized-video-wrapper iframe {
  width: 100%;
  height: 100%;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.contact-section p {
  text-align: center;
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Raleway', sans-serif;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea::placeholder {
  color: #6c757d;
  font-style: italic;
}

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  margin-top: 2rem;
  background: #667eea 0%;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.direct-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
  text-align: center;
}

.direct-contact p {
  color: #6c757d;
  font-size: 0.95rem;
  margin: 0;
}

.direct-contact a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.direct-contact a:hover {
  color: #5a67d8;
  text-decoration: underline;
}

/* Venues Section */
.venues-section {
  padding: 80px 0;
  background: white;
}

.venues-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
}

.venue-logo {
  text-align: center;
  position: relative;
}

.venue-logo img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-logo img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Tooltip Styles */
.venue-logo[data-tooltip] {
  cursor: pointer;
}

.venue-logo[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -80px;
  right: -20px;
  background: #2c3e50;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  max-width: 250px;
  white-space: normal;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  opacity: 0;
  animation: tooltipFadeIn 0.3s ease forwards;
}

.venue-logo[data-tooltip]:hover::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 10px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #2c3e50;
  z-index: 101;
  opacity: 0;
  animation: tooltipFadeIn 0.3s ease forwards;
}

@keyframes tooltipFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Videos Section */
.videos-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  position: relative;
}

.videos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/bg_fabric.png');
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.05;
  z-index: 1;
}

.videos-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.video-thumbnail {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.video-thumbnail:hover {
  transform: translateY(-5px);
}

.thumbnail-wrapper {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.thumbnail-wrapper iframe {
  width: 100%;
  height: 100%;
}

.video-thumbnail h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
}

/* Quote Section */
.quote-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-content blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: #2c3e50;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
  font-weight: 300;
}

.quote-content cite {
  font-size: 1.1rem;
  color: #667eea;
  font-weight: 500;
  font-style: normal;
}

/* Awards and Resume Section */
.awards-resume-section {
  padding: 80px 0;
  background: white;
}

.awards-resume-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.awards-column h2,
.resume-column h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
  text-align: center;
}

.awards-list,
.resume-list {
  space-y: 1rem;
}

.award-item,
.resume-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.award-item:last-child,
.resume-item:last-child {
  border-bottom: none;
}

.award-item .year,
.resume-item .year {
  font-weight: 600;
  color: #667eea;
  min-width: 60px;
  margin-right: 1rem;
  font-size: 0.95rem;
}

.award-item .title {
  color: #2c3e50;
  font-size: 0.95rem;
  line-height: 1.4;
}

.event-details {
  flex: 1;
}

.event-name {
  font-weight: 500;
  color: #2c3e50;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.venue {
  color: #6c757d;
  font-size: 0.9rem;
  font-style: italic;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0;
}

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

.footer-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-image {
  max-height: 80px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-text h3 {
  font-family: 'Birthstone', cursive;
  font-size: 3rem;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}

.footer-text p {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 300;
  opacity: 0.9;
}

.footer-right {
  text-align: right;
}

.footer-right .contact-info {
  margin-bottom: 1rem;
}

.footer-right .contact-info span {
  display: block;
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  align-items: center;
}

.social-links a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: #667eea;
  transform: translateY(-2px);
}

.social-links i {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
  .venues-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .venues-grid .venue-logo:nth-child(4),
  .venues-grid .venue-logo:nth-child(5) {
    grid-column: span 1;
  }
  
  .venues-grid .venue-logo:nth-child(4) {
    grid-column: 2 / 3;
  }
  
  .venues-grid .venue-logo:nth-child(5) {
    grid-column: 3 / 4;
  }
}

@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 10rem;
  }
  
  .hero-overlay p {
    font-size: 1.1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .venues-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  /* Mobile tooltip adjustments */
  .venue-logo[data-tooltip]:hover::after {
    max-width: 200px;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    bottom: -60px;
    right: 50%;
    transform: translateX(50%);
    text-align: center;
  }
  
  .venue-logo[data-tooltip]:hover::before {
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    border-top: none;
    border-bottom: 6px solid #2c3e50;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
  }
  
  .awards-resume-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .personalized-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .personalized-text h2 {
    text-align: center;
  }
  
  .quote-content blockquote {
    font-size: 1.3rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-left {
    justify-content: center;
  }
  
  .footer-right {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-image {
    max-height: 60px;
  }
  
  section h2 {
    font-size: 2rem !important;
  }
}

@media (max-width: 480px) {
  .hero-overlay {
    padding: 1rem;
  }
  
  .hero-overlay h1 {
    font-size: 10rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .alert-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .alert-message {
    font-size: 0.9rem;
  }
  
  .book-now-btn {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }
}
