@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

.studio-container {
  min-height: 100vh;
  background: #0a0a0a;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('ramadan.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.studio-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(at 20% 30%, rgba(30, 30, 30, 0.4) 0px, transparent 50%),
    radial-gradient(at 80% 70%, rgba(20, 20, 20, 0.4) 0px, transparent 50%);
  pointer-events: none;
}

.studio-content {
  max-width: 600px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
  position: relative;
  z-index: 1;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo */
.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 10px;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Studio Name */
.studio-name {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

.slide-up {
  animation: slideUp 0.8s ease forwards;
  opacity: 0;
}

.slide-up-delay {
  animation: slideUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

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

/* Description */
.studio-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.7;
  padding: 0 10px;
  font-weight: 300;
  letter-spacing: 0.3px;
  white-space: pre-line;
}

/* Booking Counter */
.booking-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.25s forwards, pulse 2s ease-in-out infinite;
  opacity: 0;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.counter-icon {
  font-size: 1.2rem;
  animation: flicker 1.5s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.counter-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.counter-text strong {
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Main Booking Button */
.main-booking-section {
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.main-booking-button {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 22px 30px;
  border: none;
  border-radius: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 
    0 8px 30px rgba(102, 126, 234, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.main-booking-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.main-booking-button:hover::before {
  left: 100%;
}

.main-booking-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 15px 50px rgba(102, 126, 234, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.booking-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-3px) rotate(-5deg);
  }
  75% {
    transform: translateY(-3px) rotate(5deg);
  }
}

.booking-icon svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.booking-text {
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

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

/* Section Titles */
.section-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* Social Media Section */
.social-media-section {
  margin-bottom: 40px;
}

.social-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.social-button {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.social-button:nth-child(1) {
  animation-delay: 0.4s;
}

.social-button:nth-child(2) {
  animation-delay: 0.5s;
}

.social-button:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

/* Contact Section */
.contact-section {
  margin-bottom: 40px;
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.contact-button {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 18px 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  text-decoration: none;
}

.contact-button:nth-child(1) {
  animation-delay: 0.6s;
}

.contact-button:nth-child(2) {
  animation-delay: 0.7s;
}

.contact-button:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.contact-button.whatsapp-alt:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.3);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.2);
}

.contact-button.email:hover {
  background: rgba(234, 67, 53, 0.15);
  border-color: rgba(234, 67, 53, 0.3);
  box-shadow: 0 8px 30px rgba(234, 67, 53, 0.2);
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

/* Location Section */
.location-section {
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 15px;
  text-align: left;
}

.location-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-address p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.map-button {
  width: 100%;
  background: rgba(66, 133, 244, 0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 15px 20px;
  border: 1px solid rgba(66, 133, 244, 0.3);
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 15px;
  text-decoration: none;
}

.map-button:hover {
  background: rgba(66, 133, 244, 0.25);
  border-color: rgba(66, 133, 244, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

.map-container {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* Footer */
.footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .studio-name {
    font-size: 2rem;
  }

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

  .logo {
    width: 100px;
    height: 100px;
  }

  .social-buttons {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .studio-container {
    padding: 15px;
  }

  .studio-name {
    font-size: 1.8rem;
  }

  .studio-description {
    font-size: 0.95rem;
  }

  .social-button,
  .contact-button {
    padding: 15px;
    font-size: 0.95rem;
  }

  .contact-buttons {
    grid-template-columns: 1fr;
  }

  .location-address {
    padding: 16px;
  }

  .location-address p {
    font-size: 0.95rem;
  }

  .logo {
    width: 90px;
    height: 90px;
  }
}
