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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: #faf8f8;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #666;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #333;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  color: #666;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  color: #333;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Header Section */
.header {
  margin-top: 10px;
  padding: 2rem 0;
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.1rem;
  margin-bottom: 3rem;
  border-radius: 0px;
  overflow: hidden;
}

.photo-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #e9ecef;
  position: relative;
}

.photo-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
}

/* Name Title */
.name-title {
  text-align: center;
  margin-top: 2rem;
}

.name-title h1 {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 700;
  color: #222;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Audition Videos Section */
.audition-section {
  padding: 4rem 2rem;
  max-width: 1540px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.audition-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  position: relative;
}

.audition-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #333;
  margin: 1rem auto;
}

.audition-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.video-item {
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-container {
  position: relative;
  width: 100%;
  height: auto;
  background: #000;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-info {
  padding: 2rem;
}

.video-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.video-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1rem;
}



/* Contact Section */
.contact-section {
  max-width: 1600px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  width: 100%;
  margin: 0 auto;
}

.contact-container {
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  gap: 0;
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.contact-form-container {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  background: white;
}

.contact-form-container h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.contact-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #333;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #333;
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
  background: white;
}

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

.submit-btn {
  background: #333;
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  background: #222;
  transform: translateY(-2px);
}

.contact-image {
  position: relative;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Contact info styles */
.contact-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.contact-info-title {
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #fafafa;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.contact-method-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-method-info {
  flex: 1;
}

.contact-method-label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.contact-method-value {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

.phone-link {
  color: inherit;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}

/* Contact buttons */
.contact-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-buttons .submit-btn {
  flex: 1;
}

.contact-buttons .whatsapp-btn {
  flex: 1;
  justify-content: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  overflow: hidden;
  padding: 0.5rem;
}

.portfolio-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #e9ecef;
  position: relative;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item img:hover {
  transform: scale(1.05);
}

/* Profile Section */
.profile-section {
  padding: 4rem 0;
  background: #f3f3f3;
}

.profile-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr; /* left wider than right */
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 15rem;
  align-items: center;
}

/* Left: Info */
.profile-info {
  text-align: left;
}

.profile-heading {
  font-family: "Georgia", serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #222;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #383838;
  margin-bottom: 3rem;
  font-family: "Georgia", serif;
  max-width: 600px;
}

.profile-subheading {
  font-family: "Georgia", serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.vital-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vital-stats li {
  font-size: 1rem; /* smaller than About */
  margin: 0.4rem 0;
  color: #555;
}

.vital-stats span {
  font-weight: 600;
  color: #222;
  margin-right: 0.5rem;
}

/* Right: Image */
.profile-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  margin-left: auto; /* align right */
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    padding: 1rem;
  }

  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .photo-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .social-links {
    margin-top: 1rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-form-container {
    padding: 2.5rem 2rem;
  }

  .contact-form-container h2 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-image {
    min-height: 60vh;
  }
  .photo-grid,
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }

  .profile-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-info {
    text-align: center;
  }

  .about-text {
    margin: 0 auto 2rem;
  }

  .profile-image img {
    margin: 2rem auto 0;
  }
  .audition-videos {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .audition-section {
    padding: 2rem 1rem;
  }

  .video-container {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .photo-grid,
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
  }

  .nav-container {
    padding: 0.75rem 1rem;
  }

  .logo {
    font-size: 1.3rem;
  }
  .contact-form-container {
    padding: 2rem 1.5rem;
  }

  .contact-container {
    padding: 0 1rem;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
.photo-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

.photo-item img {
  position: relative;
  z-index: 1;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
