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

.main{
	margin-top: 160px;
}

.container {
  width: 100%;
  margin-left: auto;
  padding:0 20px;
  box-sizing: border-box;
}

/* Fixed Navigation Bar */
header nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  z-index: 999;
}

.logo img {
  width: 100px;
  height: 91px;
  object-fit: contain;
  position:static;
  left: -40px;
  top: 18px;
}

.nav-left {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin-left: auto;
  margin-right: 2rem;
  position: relative;
  top: 4px;
}

.nav-left li a {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 5%;
  color: #2A2967;
  text-decoration: none;
  text-align: center;
}

.ticket-btn a {
  display: inline-block;
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 24px;
  color: #2A2967;
  background-color: transparent;
  padding: 0.6rem 1.2rem;
  border: 3px solid #672929;
  border-radius: 10px;
  text-decoration: none;
}

.ticket-btn a:hover {
  background-color: #672929;
  color: #F2E8E2;
  border-color: #672929;
}

nav > * {
  flex-shrink: 0;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  margin-top: 293px;
  max-width: 1440px;
  padding: 0 16px;
}

.hero-image {
  display: block;
  width: calc(100% - 198px);
  margin: 0 auto;
  border: 7px solid #672929;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.center-logo {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 247.4px;
  height: 144px;
  object-fit: contain;
  z-index: 2;
}

.main-heading {
  position:relative;
  bottom: 80px; /* move near hero image */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: 96px;
  color: #F2E8E2;
  -webkit-text-stroke: 20px #2A2967;
  text-stroke: 10px #2A2967;
  paint-order: stroke fill;
  text-align: center;
  line-height: 1;
  z-index: 3;
}

.hero-tagline {
  margin-top: 100px;
  text-align: center;
  font-family: 'Sansita', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 40px;
  color: #2A2967;
  padding: 0 20px;
  line-height: 1.4;
}

.hover-caption {
  position: absolute;
  top: calc(100% + 200px);
  left: 0;
  width: 100%;
  text-align: center;
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: 95px;
  color: #FFFFFF;
  -webkit-text-stroke: 2px #2A2967;
  text-stroke: 2px #2A2967;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease-out;
}

.hero-description {
  margin-top: 24px;
  padding: 0 40px;
  text-align: center;
  font-family: 'Roboto Slab', serif;
  font-weight: 100;
  font-size: 20px;
  color: #2A2967;
  line-height: 1.6;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 20px;
  padding: 12px 24px;
  color: #2A2967;
  border: 3px solid #2A2967;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
  background: #672929;
  color: #F2E8E2;
  border: 3px solid #672929;
  border-radius: 10px;
}

.hero-wrapper:hover .hover-caption {
  opacity: 1;
  animation: fadeOutDelay 700ms ease-out forwards;
}

@keyframes fadeOutDelay {
  0% { opacity: 1; }
  71.4% { opacity: 1; }
  100% { opacity: 0; }
}

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

/*RESPONSIVE LAYOUT*/
/* For tablets */
@media (max-width: 1024px) {
  .main-heading {
    font-size: 50px;
    -webkit-text-stroke: 15px #2A2967;
  }

  .center-logo {
    width: 200px;
    height: auto;
  }

  .hero-description {
    font-size: 18px;
    padding: 0 20px;
  }

  .btn-primary {
    font-size: 18px;
    padding: 10px 20px;
  }
}

/* For small tablets and phones */
@media (max-width: 768px) {
  .main-heading {
    font-size: 50px;
    -webkit-text-stroke: 15px #2A2967;
  }

  .hero-tagline {
    font-size: 20px;
    padding: 0 20px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 20px;
  }

  .btn-primary {
    font-size: 16px;
    padding: 10px 18px;
  }

  .nav-left li a {
    font-size: 18px;
  }

  .ticket-btn a {
    font-size: 18px;
    padding: 10px 18px;
  }
}

/* For phones */
@media (max-width: 480px) {
  nav {
    flex-direction: column;
    height: auto;
    padding: 20px 40px;
    gap: 10px;
  }
	
  .main-heading {
    font-size: 30px;
    -webkit-text-stroke: 15px #2A2967;
  }

  .logo img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
  }

  .nav-left {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0;
  }

  .ticket-btn {
    margin-top: 10px;
  }

  .main-heading {
    font-size: 20px;
    -webkit-text-stroke: 10px #2A2967;
  }

  .center-logo {
    width: 80px;
    height: auto;
    top: -30px;
  }

  .hero-tagline {
    font-size: 18px;
  }

  .hero-description {
    font-size: 15px;
  }

  .btn-primary {
    font-size: 14px;
    padding: 8px 14px;
  }

  .hero-btn {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .nav-left,
  .ticket-btn {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    padding: 10px 0;
    text-align: center;
  }

  nav.nav-open .nav-left,
  nav.nav-open .ticket-btn {
    display: flex;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}

.event-title {
  text-align: center;
  margin: 80px 0 40px;
}

.event-title a {
  display: inline-block;
  font-family: 'Sansita', sans-serif;
  font-size: 64px;
  font-weight: 600;
  font-style: italic;
  color: #672929;
  text-decoration: none;
  -webkit-text-stroke: 0px #2A2967;
  text-stroke: 4px #2A2967;
  paint-order: stroke fill;
  transition: all 0.3s ease;
}

.event-title a:hover {
  color: #B7B8F9;
  -webkit-text-stroke: 15px #2A2967;
  text-shadow: 4px 4px 10px rgba(45, 41, 103, 0.5);
}

.event-link {
  pointer-events: auto;
  text-decoration: none;
}

@media (max-width: 768px) {
  .event-title {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .event-title {
    font-size: 32px;
  }
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  justify-items: center;
  padding: 20px 0;
  margin: 0 auto 80px;
  max-width: 800px; /* limits total width to center content visually */
}

.event-gallery img {
  width: 100%; 
  height: auto;
  border: 7px solid #2A2967;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .event-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px;
  }

  .event-card {
    max-width: 100%;
  }
}

.event-card {
  position: relative;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 4 / 3; 
  overflow: hidden; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  border: 7px solid #2A2967;
  border-radius: 12px;
  display: block;
}

.event-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: #F2E8E2;
  color: #672929;
  border: 4px solid #2A2967;
  border-radius: 10px;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  z-index: 2;
  pointer-events: none;
}

.event-card:hover {
  background-color: #672929;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.event-card:hover .event-label {
  background-color: #672929;
  color: #F2E8E2;
  outline:none;
}

.background-container {
height: 450px;
background-coslor: #F8F8F9;
display: flex; /* To center the info-box */
justify-content: center; /* Horizontally center */
align-items: center; /* Vertically center */
position: relative; 
}

.info-box {
width: 854px;
background-color: #672929;
border: 7px solid #2A2967;
border-radius: 20px;
padding: 30px; 
box-sizing: border-box;
color: #F2E8E2;
position: relative;
}

.info-content-wrapper {
    display: flex;
    justify-content: space-around; 
    align-items: flex-start;
    gap: 40px;
  }
  .info-section {
    /* Base styles for both left and right sections */
    flex: 1;
  }

.info-head {
font-family: 'Sansita', cursive;
font-weight: 700;
font-style: italic;
font-size: 32px;
color: #F2E8E2;
margin-bottom: 15px; /* Space below the heading */
text-align: center;
position: relative;
}

.info-sub {
font-family: 'Roboto Slab', serif;
font-weight: 300; 
font-size: 24px;
margin-bottom: 10px;
padding-left: 44px;
}

.divider {
  width: 15px;
  height: 100%;
  background-color: #F2E8E2;
  border-radius: 4px;
}

.info-cont {
font-family: 'Roboto Slab', serif;
font-weight: 700; 
font-size: 24px;
line-height: 1.4; /* Adjust line height for better readability of two lines */
padding-left: 45px;
}

.info-head2 {
font-family: 'Sansita', cursive;
font-weight: 700; /* Bold */
font-style: italic;
font-size: 32px;
color: #F2E8E2;
margin-bottom: 15px; /* Space below the heading */
}

.info-sub2 {
font-family: 'Roboto Slab', serif;
font-weight: 300;
font-size: 24px;
margin-bottom: 10px; /* Space below sub-heading */
}

@media (max-width: 768px) {
  .background-container {
    height: auto;
    padding: 40px 20px;
  }

  .info-box {
    width: 100%;
    padding: 20px;
  }

  .info-content-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .divider {
    width: 100%;
    height: 2px;
    margin: 20px 0;
  }
}

.info-cont {
font-family: 'Roboto Slab', serif;
font-weight: 700; 
font-size: 24px;
line-height: 1.4; /* Adjust line height for better readability of two lines */
padding-left: 45px;
}

.info-head2 {
font-family: 'Sansita', cursive;
font-weight: 700; /* Bold */
font-style: italic;
font-size: 32px;
color: #F2E8E2;
margin-bottom: 15px; /* Space below the heading */
}

.info-sub2 {
font-family: 'Roboto Slab', serif;
font-weight: 300;
font-size: 24px;
margin-bottom: 10px; /* Space below sub-heading */
}

.site-footer {
  background-color: #2A2967;
  padding: 50px 20px 30px;
  color: #F2E8E2;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
}

/* Left Logo */
.footer-left .footer-logo {
  width: 250px;
  height: auto;
}

/* Middle - Explore */
.footer-middle {
  flex: 1;
  min-width: 160px;
  text-align: right;
  margin-right: 70px;
}

.footer-title {
  font-family: 'Sansita', sans-serif;
  font-size: 40px;
  color: #60CAE7;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #F2E8E2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #60CAE7;
  text-decoration: underline;
}

/* Right - Social, Search, Address */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-socials {
  display: flex;
}

.footer-socials img {
  width: 60px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-socials img:hover {
  transform: scale(1.5);
}

.footer-search input {
  width: 240px;
  padding: 10px 15px;
  border: none;
  border-radius: 41px;
  background-color: #F2E8E2;
  font-family: 'Roboto Slab', serif;
  font-size: 14px;
  color: #9191A7;
}

.footer-search input::placeholder {
  color: #9191A7;
}

/* Address text */
.footer-address p {
  font-family: 'Roboto Slab', serif;
  color: #F2E8E2;
  font-size: 14px;
  line-height: 2.0;
  margin-top: 5px;
}

/* Divider */
.footer-divider {
  border: none;
  border-top: 1px solid #9191A7;
  margin: 30px 0 15px;
}

/* Copyright */
.footer-copy {
  text-align: center;
  font-size: 14px;
  color: #F2E8E2;
  font-family: 'Roboto Slab', serif;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    align-items: center;
  }

  .footer-search input {
    width: 100%;
  }

  .footer-socials {
    justify-content: center;
  }
}

.visit-page-wrapper {
  max-width: 850px; 
  margin: 0 auto 100px;
  padding: 50px 20px 0;
}

.visit-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
  padding-left:10px;
}

.visit-title {
  font-family: 'Sansita', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 40px;
  color: #672929;
  line-height: 1.1;
  margin-top:120px;
}

@media (max-width: 768px) {
  .visit-title {
    font-size: 32px;
    margin-top: 60px;
  }
}

@media (max-width: 480px) {
  .visit-title {
    font-size: 24px;
    margin-top: 40px;
  }
}

.search-bar {
  padding: 10px 20px;
  border: 3px solid #672929;
  border-radius: 20px;
  font-size: 16px;
  font-family: 'Roboto Slab', serif;
  color: #672929;
  background-color: #F2E8E2;
  width: 100%;
}
	
.event-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  justify-content: center;
  margin: 0 auto;
}

.rules-section {
  max-width: 850px;
  margin: 80px auto;
  padding: 0 20px;
}

.rules-title {
  font-family: 'Sansita', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 40px;
  color: #672929;
  line-height: 1.1;
  margin-bottom: 30px;
  text-align: left;
}

.rules-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
}

.rules-tab {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 18px;
  padding: 12px 25px;
  border: 4px solid #2A2967;
  border-radius: 15px;
  background: white;
  color: #2A2967;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.rules-tab.active {
  background: #672929;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border-color: #672929;
}

.rules-panel {
  display: none;
}

.rules-panel.active {
  display: block;
}

.accordion-item {
  border-top: 1px solid #2A2967;
  padding: 10px 0;
}

.accordion-item:last-child {
  border-bottom: 1px solid #2A2967; 
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 16px;
  color: #2A2967;
  cursor: pointer;
  padding: 5px 0;
}

.accordion-icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
}

.accordion-content.open {
  padding: 10px 0;
  max-height: inherit;
}

.accordion-content p {
  font-family: 'Roboto Slab', serif;
  font-size: 15px;
  color: #2A2967;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .rules-title {
    font-size: 32px;
    text-align: center;
  }

  .rules-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .rules-tab {
    font-size: 16px;
    padding: 10px 20px;
    margin-bottom: 10px;
  }

  .accordion-header {
    font-size: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .accordion-icon {
    align-self: flex-end;
  }

  .accordion-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .rules-title {
    font-size: 26px;
  }

  .rules-tab {
    font-size: 15px;
    padding: 8px 16px;
  }

  .accordion-header {
    font-size: 14px;
  }

  .accordion-content p {
    font-size: 13px;
  }
}

:root {
  --primary-color: #672929;
  --bg-color: #F8F8F9;
  --font-header: 'Sansita', sans-serif;
  --font-body: 'Roboto Slab', serif;
}

/* Hours Section */
.calendar-section {
  max-width: 1000px;
  width: 100%;
  margin: 40px auto;
  padding: 30px 20px;
  text-align: center;
  background-color: #F8F8F9;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}


.year-text {
  font-family: var(--font-header);
  font-size: 50px;
  font-weight: 700;
  font-style: italic;
}

.month-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size:100px;
  color: #2A2967;
}

.calendar-section h2 {
  font-size: 36px;
  color: #2A2967;
  margin-bottom: 20px;
}

.calendar-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 3px solid var(--primary-color);
}

.calendar-table th,
.calendar-table td {
  border: 1px solid var(--primary-color);
  padding: 8px;
  text-align: right;
  vertical-align: top;
  font-size: 20px;
  font-family: var(--font-body);
  font-weight: 700; /* Bold numbers */
  color: var(--primary-color);
  background-color: var(--bg-color);
}

.calendar-table th {
  background-color: var(--primary-color);
  color: #F2E8E2;
  text-align: center;
  font-weight: bold;
}

/* Search Bar */
.search-bar {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.search-bar input {
  width: 300px;
  padding: 10px 30px;
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--primary-color);
  background-color: #F2E8E2;
  border-radius: 8px;
  border: none;
  outline: none;
}

.search-bar:focus {
  border-color: #672929;
  box-shadow: 0 0 0 3px rgba(103, 41, 41, 0.2);
}

.calendar-day {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  height:100px;
}

/* Tooltip */
.event-tooltip {
  visibility: hidden;
  opacity: 0;
  width: 180px;
  background-color: #672929;
  color: #F2E8E2;
  text-align: left;
  font-size: 12px;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: absolute;
  z-index: 10;
  top: 30px;
  left: 0;
  transition: opacity 0.2s ease;
}

/* Tooltip */
.event-tooltip {
  visibility: hidden;
  opacity: 0;
  width: 200px;
  background-color: #672929;
  color: #F2E8E2;
  text-align: left;
  font-size: 12px;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: absolute;
  z-index: 10;
  top: 30px;
  left: 0;
  transition: opacity 0.2s ease;
}

/* Show on hover */
.calendar-day:hover .event-tooltip {
  visibility: visible;
  opacity: 1;
}


/* Booking wrapper container */
.booking-wrapper {
  max-width: 780px;
  width: 100%;
  min-height: 100vh;
  padding: 160px 20px 40px;
  margin: 0 auto;
  font-family: 'Roboto Slab', serif;
}

/* Page title */
.page-title h1 {
  font-family: 'Sansita', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 40px;
  color: #672929;
  margin-bottom: 20px;
}

/* Note above form */
.faq-note {
  font-size: 14px;
  color: #2A2967;
  margin-bottom: 30px;
}

/* Price list section */
.price-list {
  background: #F8F8F9;
  border-radius: 12px;
  padding: 20px 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.price-list h2 {
  font-size: 24px;
  font-weight: 700;
  font-family: 'Sansita', sans-serif;
  color: #2A2967;
  margin-bottom: 15px;
}

.price-list ul {
  padding-left: 20px;
}

.price-list li {
  margin-bottom: 8px;
  color: #2A2967;
  font-size: 16px;
}

/* Booking form layout */
#bookingForm {
  background: #F8F8F9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Label styling */
#bookingForm label {
  font-weight: 600;
  color: #2A2967;
  font-size: 14px;
  margin-bottom: 6px;
  display: inline-block;
}

/* Input, select, textarea styling */
#bookingForm input,
#bookingForm select,
#bookingForm textarea {
  padding: 10px;
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Roboto Slab', serif;
  color: #2A2967;
  max-width: 100%;
  width: 100%;
}

/* Error messages */
.error {
  font-size: 12px;
  color: #B93131;
  margin-top: 4px;
}

/* Form buttons container */
.form-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* Submit & Cancel Buttons */
.submit-btn,
.cancel-btn {
  background: #2A2967;
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 14px;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover,
.cancel-btn:hover {
  background: #672929;
  color: #F2E8E2;
}

/* Contact card container */
.contact-section {
  padding: 0 20px;
  margin-top: 120px;
}

.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: #F8F8F9;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin: 20px auto 80px;
  max-width: 1000px;
  flex-wrap: wrap;
}

/* Title aligned with card */
.contact-title {
  font-family: 'Sansita', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 40px;
  color: #672929;
  margin-top: 140px;
  margin-bottom: 20px;
}

/* Map Column */
.contact-left img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Info + Form Column */
.contact-right {
  flex: 1;
  min-width: 300px;
}

.contact-subtitle {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 20px;
  color: #2A2967;
  margin-bottom: 10px;
}

.contact-subtitle span {
  font-family: 'Sansita', serif;
  font-weight: 700;
  font-style: italic;
  color: #672929;
}

.address, .phone {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  color: #2A2967;
  margin-bottom: 10px;
}

.contact-form {
  margin-top: 25px;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.form-row input,
.form-row select {
  flex: 1 1 45%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 12px;
  font-family: 'Roboto Slab', serif;
  min-width: 120px;
}

.contact-form textarea {
  width: 100%;
  height: 120px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Roboto Slab', serif;
  margin-bottom: 20px;
}

.contact-form button {
  background: #2A2967;
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 16px;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #672929;
  color: #F2E8E2;
}


/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
    padding: 30px 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-left img {
    width: 100%;
  }
