
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color:#FFFFFF;
  color:#000000;
  text-align:start;
  font-size: 20px;
} 
.para-photoone {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 10px;
}

h3 {
	text-align: center;
}
.side-photo {
  width: 150px;
  height: auto;
}

.para-phototwo {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  
}

.rightside-photo {
  width: 190px ;
  height: 180px;
  border-radius: 50%;
}

p {
	text-align: left;
}
h1, h2 {
  font-family: 'Pacifico', cursive;
  color: #c94c7c;
}

.section-title {
  text-align: center;
  margin-top: 40px;
  font-size: 2.2em;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 1rem 2rem;
  background-color:#FFFFFF;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color:#E0558D;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background-color:#FFEBF0;
  color: #E0558D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
}

/* Hero Section */
.hero {
  background: url('hero-bg.jpg') no-repeat center center/cover;
  text-align: center;
  padding: 4rem 2rem;
  color: white;
}

.hero-title {
  font-size: 4em;
  color:white;
  text-shadow:3px 3px 0 #C21E56;
  
}

.primary-btn {
  background-color:#E35B79;
  color: #fff;
  padding: 1.0rem 1.8rem;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.primary-btn:hover {
  background-color:#FFCFE1;
  color:#E35B79;
}

/* Features Section */
.feature-boxes {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

.feature-card {
  background-color: #fff0f5;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  width: 380px; 
  height: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.feature-card img {
  width: 100%;
  border-radius: 15px;
}

.feature-card:hover {
  transform: scale(1.05);
  z-index: 2;
}

.feature-boxes:hover .feature-card:not(:hover) {
  filter: blur(2px);
  opacity: 0.6;
  transform: scale(0.98);
}

/* About */
.about {
  padding: 3rem;
  background-color:#FFFFFF;
  align-content: center;
  max-width: 1200px;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about-img img {
  max-width: 300px;
  border-radius: 15px;
  margin-top: 1rem;
}

/* Ticket Form */
.ticket-form {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  background: #fff0f5;
  border-radius: 15px;
}

.form-row {
  margin-bottom: 1rem;
}

.booking-options, .play-pass-options {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.booking-card, .btn {
  background:#D26382;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #f8a4c5;
}

.custom-footer {
    background-color:#6B6B6B;
    color: #fff;
    padding: 40px 60px 55px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
  }

.footer-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

.footer-logo {
    height: 140px;
    width: auto;
	margin-top: 1rem;
  }

.footer-links {
    display: flex;
    justify-content: space-between;
    flex: 1;
    flex-wrap: wrap;
    gap: 20px;
	margin-right: 20rem;
  }

.footer-column {
    min-width: 150px;
    line-height: 1.6;
    border-left: 1px solid #fff;
    padding-left: 20px;
  }

.footer-column:first-child {
    border-left: none;
    padding-left: 0;
  }

.footer-contact-btn {
    margin-top: 10px;
    padding: 8px 20px;
    border: 1px solid #fff;
    background: none;
    color: #fff;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
  }

.footer-contact-btn:hover {
    background-color: #fff;
    color: #525656;
  }

.footer-icons {
    margin-top: 10px;
    display: flex;
    gap: 15px;
  }

  .footer-icons img {
    height: 24px;
    width: 24px;
    filter: invert(1);
	object-fit: contain;
	border-radius: 50px;
  }
.footer-icons img:hover{
	transform: scale(1.5);
	transition: 0.2s;
}

.footer-copyright {
  text-align: center;
  margin-top: 2rem;
  font-size: 1rem;
  color: #f1f1f1;
}

@media (max-width: 768px) {
  .feature-boxes, .booking-options, .play-pass-options, .footer-grid {
    flex-direction: column;
    align-items: center;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

.hero {
  background-image: url("Images/Hero images.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 6rem 2rem;
  color: white;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.3); 
  z-index: 1;
}

.hero .hero-title,
.hero .primary-btn {
  position: relative;
  z-index: 2;
}

.logo img {
  height: 90px;
  width: auto;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.menu-toggle {
  display: none;     
  font-size: 2rem;
  cursor: pointer;
}

.menu-toggle img {
  height: 30px;
  width: auto;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block; 
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end; 
  gap: 30px;
  margin-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 2rem;
}

.footer-contact .btn {
  background-color: #F0F0F0;
  color: #000000;
  border: none;
  padding: 10px 20px;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.footer-contact .btn:hover {
  background-color: #DFC0CC;
}

.footer-contact img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}


@media (max-width: 768px) {
  .nav-links {
    display: block;
    flex-direction: column;
    background-color:#FFFFFF;
    position: absolute;
	justify-content: center;
	text-align: center;
    top: 30px; 
    left: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    justify-content: space-between;
    align-items: center;
  }

  .logo img {
    height: 40px;
  }
}

.feature-card:hover {
	background-color:#FFF4D3;
	transition: background-color 0.3s ease;
}

.social-icon {
  display: inline-block; 
  margin-right: 50px ;
  float:right;
}

.fb-logo {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.fb-logo:hover {
  transform: scale(1.1); 
  cursor: pointer;
}

.ig-logo {
  width: 55px;
  height: 55px;
  transition: transform 0.3s ease;
  
  
}

.ig-logo:hover {
  transform: scale(1.1); 
  cursor: pointer;
}


.play-section {
  background-color: #fff0f5;
  padding: 3rem 2rem;
  overflow: hidden;
}

.play-scroll-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none; 
}

.play-scroll-container::-webkit-scrollbar {
  display: none; 
}

.play-card {
  flex: 0 0 auto;
  width: 500px;
  height:auto;
  background-color: #ffffff;
  border-radius: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.play-card img {
  width: 100%;
  height: 300px;
  border-radius: 15px 15px 0 0;
  object-fit: cover;
}

.play-card h3 {
  padding: 1rem;
  font-size: 1.1rem;
  color: #c94c7c;
  font-family: 'Poppins', sans-serif;
  
}

.play-card:hover {
  transform: scale(1.05);
  background-color:#D3D6D8;
  background-blend-mode: multiply;
}

/* Contact */

.contact-hero .hero-contact {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%; 
  	height: 100%; 
  	background-color: rgba(0, 0, 0, 0.3); 
  	z-index: 1;
	color: #FFFFFF;
}

.contact-hero {
  	position: relative;
  	width: 100%;
  	height: 490px;
  	background: url("Images/Contact hero.jpg") center/cover no-repeat;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	overflow: hidden;
}

.contact-hero-title {
	position: relative;
  	z-index: 1;
  	color: white;
  	font-size: 5rem;
  	text-align: center;
	text-shadow:3px 3px 0 #C21E56;
}

.contact {
  	background-color: #FFFFFF;
  	padding: 2rem 1rem;
}

.contact-container {
  	display: flex;
  	flex-direction: row;
  	gap: 0rem;
  	max-width: 1100px;
  	margin: auto;
  	border-radius: 15px;
}

.contact-columns {
  	display: flex;
  	justify-content: space-between;
  	gap: 2rem;
  	flex-wrap: wrap;
}

.contact-info {
  	flex: 1;
  	max-width: 450px;
}

.message-form {
  	flex: 1;
  	min-width: 20px;
}

.message-form input,
.message-form textarea {
  	width: 100%;
  	padding: 0.8rem;
  	margin: 0.5rem 0;
  	border-radius: 15px;
  	border: 1px solid #ccc;
}

.map-section {
  	text-align: center;
  	width: 1200px;
}

.map-img {
  	width: 100%;
  	max-width: 1200px;
  	border-radius: 15px;
  	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-section {
  	padding: 30px 20px;
  	background: #f8f8f8;
  	font-family: 'Open Sans', sans-serif;
}

.contact-title {
  	text-align: center;
  	font-size: 40px;
  	color: #E0558D; 
  	margin-bottom: 30px;
}


.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-row {
  display: flex;
  gap: 10px;
}

.input-row input {
  flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 10px;
  font-size: 18px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 15px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
  max-width: 490px;
}

.contact-form button {
  background-color: #FFE0ED;
  color:#000000;
  border: none;
  padding: 10px;
  font-size: 19px;
  border-radius: 15px;
  cursor: pointer;
}

.contact-form button:hover{
	color: white;
	background-color: #E0558D;
}

.contact-info {
  flex: 1 1 40%;
  background-color:#FFFFFF;
  padding: 20px;
  border-radius: 15px;
}

.contact-info h3 {
  margin-top: 0;
  font-size: 25px;
  color: #E0558D;
}

.contact-info p {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-map iframe {
  margin-top: 15px;
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .input-row {
    flex-direction: column;
  }
}

.play-map { 
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 40px;
}

.play-map img { 
  max-width: 80%;
  height: auto;
  border-radius: 15px;
}

.map-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 5px;
  color: #E0558D;
}

/* Login */

.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff0f5;
  height: 100vh;
}

.login-page .login-container {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.login-page .login-container h1 {
  font-family: 'Pacifico', cursive;
  color: #ff1493;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.login-page .profile-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f3f3f3;
  border: 2px dashed #ccc;
  margin: 0 auto 20px;
  background-image: url('');
  background-size: cover;
  background-position: center;
}

.login-page .login-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.login-page .btn-login {
  background-color: #ff1493;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.login-page .btn-login:hover {
  background-color: #e30b5d;
}

.login-page .login-links {
  margin-top: 15px;
}

.login-page .login-links a {
  display: block;
  font-size: 0.9rem;
  color: #888;
  text-decoration: none;
  margin: 5px 0;
}

.login-page .login-links a:hover {
  color: #ff1493;
}
