/* DJ Pardis - Optimized for Performance & Responsiveness */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Performance optimizations */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Optimize for fast rendering */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Reduce paint operations */
.site-header,
.site-footer,
.hero-section {
  will-change: auto;
}

/* Optimize animations for performance */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
  position: relative;
}

/* Simple, lightweight background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 153, 214, 0.01);
  pointer-events: none;
  z-index: -1;
}

/* Header - Optimized */
.site-header {
  background: 
    linear-gradient(to right, #2C5AA0 0%, #FFB3E0 30%, #FFB3E0 70%, #10B981 100%),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(255, 255, 255, 0.15) 30px, rgba(255, 255, 255, 0.15) 35px);
  color: white;
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: none;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  text-shadow: none;
  text-transform: none;
}

.book-button {
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 0;
  transition: background-color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.book-button:hover {
  background: rgba(255,255,255,0.9);
  color: #4A90E2;
}

/* Hero section - Side by side layout */
.hero-section {
  background: rgba(255, 153, 214, 0.03);
  padding: 4rem 0;
  width: 100%;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-image {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-image img {
  max-width: 650px;
  width: 100%;
  height: auto;
  border: 3px solid rgba(16, 185, 129, 0.3);
  box-shadow: none;
  border-radius: 0;
}

.hero-text {
  flex: 0 1 600px;
}

.hero-text p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #333;
}

.hero-text a {
  color: #4A90E2;
  text-decoration: none;
  font-size: 1.3rem;
}

.hero-text a:hover {
  color: #357ABD;
  text-decoration: none;
}

.hero-caption {
  font-style: italic;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-top: 1rem;
}

/* Global link styles - Consistent blue color, no underlines */
a {
  color: #4A90E2;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
}

a:hover {
  color: #357ABD;
  text-decoration: none;
  font-weight: 600;
}

/* Content sections - Optimized */
.content-section {
  padding: 3rem 0;
  width: 100%;
  position: relative;
}

.content-section.alt-bg {
  background: rgba(255, 153, 214, 0.03);
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-section p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #333;
}

.content-section a {
  color: #4A90E2;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3rem;
  border-bottom: none;
  transition: none;
}

.content-section a:hover {
  color: #357ABD;
  border-bottom: none;
}

/* Page headings - LEFT ALIGNED */
h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FF99D6;
  margin-bottom: 2rem;
  text-align: left;
  letter-spacing: -0.3px;
  position: relative;
}

/* Ensure all headings use consistent font sizing */
h3, h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #FF99D6;
  border-radius: 2px;
}



/* Reviews table - Table rows with same boundary color */
.reviews-grid {
  background: rgba(16, 185, 129, 0.05);
  padding: 0;
  margin-top: 2rem;
  border-radius: 0;
  overflow: hidden;
}

/* NUCLEAR OPTION - Remove ALL underlines from reviews */
.reviews-grid,
.reviews-grid *,
.review-item,
.review-item *,
.review-item:link,
.review-item:visited,
.review-item:hover,
.review-item:active,
.review-item:focus {
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-style: none !important;
  text-decoration-color: none !important;
  text-decoration-thickness: none !important;
  text-underline-offset: none !important;
  text-underline-position: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Force override any inherited link styles */
.reviews-grid a,
.reviews-grid a:link,
.reviews-grid a:visited,
.reviews-grid a:hover,
.reviews-grid a:active,
.reviews-grid a:focus {
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-style: none !important;
  text-decoration-color: none !important;
  text-decoration-thickness: none !important;
  text-underline-offset: none !important;
  text-underline-position: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* EXTRA AGGRESSIVE - Target the actual link elements */
a.review-item,
a.review-item:link,
a.review-item:visited,
a.review-item:hover,
a.review-item:active,
a.review-item:focus {
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-style: none !important;
  text-decoration-color: none !important;
  text-decoration-thickness: none !important;
  text-underline-offset: none !important;
  text-underline-position: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-bottom: none !important;
  border: none !important;
}

.review-item {
  background: none;
  border: none;
  padding: 0.8rem 1.5rem;
  text-decoration: none !important;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 0;
  box-shadow: none;
}

.review-item:hover {
  background: white;
}







.review-title {
  font-weight: 600;
  font-size: 1.3rem;
  color: #4A90E2;
  margin-left: 0;
}

.review-date {
  color: #333;
  font-size: 1.3rem;
  font-weight: 400;
  flex-shrink: 0;
  padding: 0.3rem 0.6rem;
  white-space: nowrap;
  position: relative;
  margin-left: auto;
}

/* Removed annoying hover effect on dates */



/* Radio grid - One per line like reviews */
.radio-grid {
  background: rgba(16, 185, 129, 0.05);
  padding: 0;
  margin-top: 2rem;
  border-radius: 0;
  overflow: hidden;
}

.radio-item {
  background: none;
  border: none;
  padding: 0.8rem 1.5rem;
  text-decoration: none !important;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
  box-shadow: none;
}

.radio-item .review-title {
  font-weight: 400;
  color: #333;
}

.radio-item:hover {
  background: white;
}

/* Radio content is now inline */

.radio-title {
  display: inline;
  font-size: 1.3rem;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  margin-bottom: 0;
  margin-right: 0.3rem;
}

.radio-host {
  display: inline;
  color: #333;
  font-weight: 400;
  font-size: 1.3rem;
  margin-right: 0.3rem;
}

.radio-show {
  display: inline;
  color: #333;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.3rem;
  margin-right: 0.3rem;
}

.radio-date {
  display: block;
  color: #666;
  font-weight: 400;
  font-size: 1.3rem;
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: auto;
}

.radio-playlist {
  display: inline-block;
  background: rgba(16, 185, 129, 0.3);
  color: white !important;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 900 !important;
  font-size: 1.3rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  border-radius: 0;
  transition: background-color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.radio-playlist:hover {
  background: rgba(16, 185, 129, 0.5);
}

/* No borders between radio items */

/* Poster section - Simplified */
.poster-section {
  text-align: center;
  margin-top: 3rem;
}

.poster-section img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border: 3px solid rgba(16, 185, 129, 0.3);
  box-shadow: none;
  border-radius: 0;
  display: block;
  margin: 0 auto;
}

/* Footer - Light pink with simple texture */
.site-footer {
  background: #FFC4E0;
  border-top: none;
  padding: 1.5rem 0;
  text-align: center;
  color: #333;
  position: relative;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-footer .footer-content p {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 1;
}

/* Form styling - Optimized */
.booking-form {
  width: 100%;
  margin: 1rem 0;
}

/* Ensure form is responsive */
@media (max-width: 768px) {
  .booking-form {
    margin: 0.8rem 0;
  }
  
  .form-field {
    margin-bottom: 1.5rem;
  }
  
  .site-footer {
    padding: 1rem 0;
  }
}

.form-field {
  margin-bottom: 2rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #333;
  text-transform: none;
  letter-spacing: 0.5px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1.2rem;
  border: 3px solid rgba(16, 185, 129, 0.3);
  font-size: 1.3rem;
  font-family: inherit;
  background: white;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  border-radius: 0;
}

/* Date input field - keep it simple and matching site */
.form-field input[type="date"] {
  padding: 1.2rem;
  font-size: 1.3rem;
  font-family: inherit;
  border: 3px solid rgba(16, 185, 129, 0.3);
  background: white;
  color: #333;
  cursor: pointer;
  min-height: 60px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  border-radius: 0;
}

input[type="date"]:focus,
.form-field input[type="date"]:focus {
  border-color: #10B981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

input[type="date"]:hover,
.form-field input[type="date"]:hover {
  border-color: #10B981 !important;
}

/* Target webkit date picker specifically - move to right side */
input[type="date"]::-webkit-calendar-picker-indicator,
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  width: 24px !important;
  height: 24px !important;
  cursor: pointer !important;
  opacity: 0.7 !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  float: right !important;
  position: relative !important;
  right: 0 !important;
}



.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #4A90E2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit button styling */
.booking-form button[type="submit"] {
  background: #4A90E2;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-form button[type="submit"]:hover {
  background: #357ABD;
}

/* Services grid - Optimized */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  background: rgba(16, 185, 129, 0.05);
  border: 3px solid rgba(16, 185, 129, 0.3);
  padding: 2rem;
  border-radius: 0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .header-content,
  .hero-content,
  .content-wrapper {
    max-width: 1200px;
  }
}

/* Medium screens (768px to 1199px) */
@media (max-width: 1199px) {
  .header-content,
  .hero-content,
  .content-wrapper {
    max-width: 100%;
    padding: 0 1.5rem;
  }
  
  .hero-content {
    gap: 2rem;
  }
  
  .hero-image img {
    max-width: 400px;
  }
  
  .hero-text {
    flex: 0 1 400px;
  }
}

/* Small screens (tablets - 768px and down) */
@media (max-width: 768px) {
  .site-header h1 {
    font-size: 2.2rem;
  }
  
  .book-button {
    padding: 0.8rem 1.5rem;
    font-size: 1.3rem;
  }
  
  .hero-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .hero-image img {
    max-width: 100%;
    width: 100%;
  }
  
  .hero-text {
    flex: 1;
    text-align: left;
  }
  
  .content-wrapper {
    padding: 0 1rem;
  }
  
  .reviews-grid {
    gap: 0.8rem;
    padding: 1rem;
  }
  
  .review-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
  }
  
  .review-title {
    margin-left: 0;
    font-size: 1.3rem;
  }
  
  .review-date {
    font-size: 1.3rem;
    padding: 0.4rem 0.8rem;
  }
  
  .radio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .radio-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
  }
  
  .service-item {
    padding: 1.5rem;
  }
  
  .form-field input,
  .form-field textarea {
    padding: 1rem;
    font-size: 1.3rem;
  }
}

/* Mobile screens (480px and down) */
@media (max-width: 480px) {
  .site-header {
    padding: 1.5rem 0;
  }
  
  .site-header h1 {
    font-size: 1.8rem;
  }
  
  .header-content {
    padding: 0 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .book-button {
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .content-wrapper {
    padding: 0 1rem;
  }
  
  .reviews-grid {
    gap: 0.6rem;
  }
  
  .review-item {
    padding: 1rem;
    gap: 0.6rem;
  }
  
  .review-title {
    font-size: 1.3rem;
  }
  
  .review-date {
    font-size: 1.3rem;
    padding: 0.3rem 0.6rem;
  }
  
  .radio-grid {
    gap: 1.2rem;
  }
  
  .radio-item {
    padding: 1.2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-item {
    padding: 1.2rem;
  }
  
  .service-item h4 {
    font-size: 1.3rem;
  }
  
  .service-item p {
    font-size: 1.3rem;
  }
  
  .form-field label {
    font-size: 1.3rem;
  }
  
  .form-field input,
  .form-field textarea {
    font-size: 1.3rem;
    padding: 0.8rem;
  }
  
  .booking-form button[type="submit"] {
    width: 100%;
    padding: 1rem;
    font-size: 1.3rem;
  }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-content {
    flex-direction: row;
    gap: 1.5rem;
  }
  
  .hero-image img {
    max-width: 300px;
  }
  
  .hero-text {
    flex: 1;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Extra small screens (320px and down) */
@media (max-width: 320px) {
  .site-header h1 {
    font-size: 1.6rem;
  }
  
  .book-button {
    padding: 0.6rem 1rem;
    font-size: 1.2rem;
  }
  
  .hero-content {
    padding: 0 0.5rem;
    gap: 1.5rem;
  }
  
  .content-wrapper {
    padding: 0 0.5rem;
  }
  
  .review-item,
  .radio-item {
    padding: 0.8rem;
    gap: 0.6rem;
  }
  
  .form-field input,
  .form-field textarea {
    padding: 0.8rem;
    font-size: 1.2rem;
  }
  
  .booking-form button[type="submit"] {
    padding: 0.8rem;
    font-size: 1.2rem;
  }
}

/* Print styles */
@media print {
  .site-header,
  .book-button,
  .hero-section {
    display: none;
  }
  
  .content-section {
    break-inside: avoid;
    margin-bottom: 2rem;
  }
  

}

.service-item {
  background: white;
  border: none;
  padding: 1.5rem;
  text-align: center;
  box-shadow: none;
  transition: background-color 0.2s ease;
  border-radius: 0;
}

/* No hover effect for service items */

.service-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #10B981;
  margin-bottom: 1rem;
}

.service-item p {
  color: #666;
  line-height: 1.6;
  font-size: 1.3rem;
  font-weight: 400;
}

/* Responsive design - Optimized */
@media (max-width: 768px) {
  .header-content {
    padding: 0 1rem;
  }
  
  .site-header h1 {
    font-size: 2.2rem;
  }
  
  .book-button {
    padding: 0.75rem 1.5rem;
    font-size: 1.3rem;
  }
  
  .content-wrapper {
    padding: 0 1rem;
  }
  
  .hero-content {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .hero-image img {
    max-width: 100%;
    width: 100%;
  }
  
  .hero-text {
    flex: 1;
    text-align: left;
  }
  
  .radio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .radio-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
  }
  
  .reviews-grid {
    gap: 0.8rem;
  }
  
  .review-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
  }
  
  .poster-section img {
    max-width: 100%;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  .form-field input,
  .form-field textarea {
    padding: 1rem;
    font-size: 1.3rem;
  }
  
  .booking-form button[type="submit"] {
    width: 100%;
    padding: 1rem;
    font-size: 1.3rem;
  }
}
