/* Base Styles */
body, html {
    margin: 0;
    padding: 0;
    font-size: 16px;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Wellness Section */
.wellness-section {
    margin-top: -70px !important;
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.wellness-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://thaprobanbeachhouse.com/wp-content/uploads/2025/07/prithiviraj-a-vDlt9BQND-o-unsplash-scaled.webp') center/cover no-repeat;
    z-index: 0;
}

.wellness-content {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

.wellness-tagline {
    color: rgba(255,255,255,0.9);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    max-width: 500px;
}

.wellness-title {
    font-family: 'Marcellus', serif;
    font-size: 4.8rem !important;
    color: white !important;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    font-weight: 300;
    max-width: 800px;
    text-align: center;
}

.wellness-description {
    font-family: 'Montserrat', sans-serif;
    max-width: 800px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
}

/* Restaurant Section */
#restaurant {
    padding: 100px 0;
    background: #F3F3F0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    min-height: 600px;
}

.image-column {
    flex: 1;
    position: relative;
    height: 500px;
    min-width: 300px;
}

.content-column {
    flex: 1;
    min-width: 300px;
}

.restaurant-images {
    display: none; /* Hidden by default */
}

/* Restaurant Info Strip Section */
.restaurant-info-strip {
    position: relative;
    height: auto;
    min-height: 300px;
    width: 100%;
    overflow: hidden;
}

.info-strip-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
}

.info-card {
    text-align: center;
    color: white;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b30707, #b30707);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3);
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
    text-transform: uppercase;
}

.info-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

/* Dine Overview Section */
.dine-overview {
    padding: 80px 0;
    background: #F3F3F0;
    position: relative;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .wellness-title {
        font-size: 4rem !important;
    }
}

@media (max-width: 992px) {
    .wellness-title {
        font-size: 3.5rem !important;
    }
    
    .container {
        flex-direction: column;
        min-height: auto;
    }
    
    .image-column {
        display: none;
    }
    
    .restaurant-images {
        display: flex;
        gap: 20px;
        margin-top: 40px;
        width: 100%;
    }
    
    .restaurant-images img {
        width: 50%;
        height: 300px;
        object-fit: cover;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .info-grid {
        gap: 30px;
        padding: 0 15px;
    }
    
    .info-card {
        padding: 25px 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .info-icon i {
        font-size: 1.5rem;
    }
    
    .info-card h3 {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .info-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .wellness-tagline {
        font-size: 0.8rem !important;
        letter-spacing: 3px;
        max-width: 90%;
    }
    
    .wellness-title {
        font-size: 2.8rem !important;
        max-width: 90%;
    }
    
    .wellness-description {
        font-size: 1rem !important;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .wellness-title {
        font-size: 2rem !important;
    }
    
    .restaurant-images {
        flex-direction: column;
        gap: 20px;
    }
    
    .restaurant-images img {
        width: 100%;
        height: 250px;
    }
    
    .info-strip-content {
        padding: 40px 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .info-card {
        padding: 20px 15px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-card h3 {
        font-size: 0.75rem;
    }
    
    .info-card p {
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .wellness-title {
        font-size: 1.8rem !important;
    }
    
    .wellness-tagline {
        font-size: 0.7rem !important;
        letter-spacing: 2px;
    }
}

/* sports bar section */
.sports-bar {
position: relative;
width: 100%;
height: 100vh;
background-color: #f6e2e2;
overflow: hidden;
margin-bottom: 60px !important;
}

.image {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 30% !important;
height: 75% !important;
z-index: 2;
overflow: hidden;
border-radius: 8px;
}

.image-left {
left: 0;
margin-top: -25px;
}

.image-right {
right: 0;
margin-top: 25px;
}

.image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1;
text-align: center;
max-width: 800px;
color: #2c2c2c;
padding: 20px;
height: 100%;
width: 800px;
backdrop-filter: blur(5px);
background-color: #ca040438;
border-radius: 8px;
}
.content-text {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
gap: 10px;
}

.content-text h2 {
font-family: 'Marcellus', serif !important;
font-size: 40px;
font-weight: 600 !important;
color: #1e2b38;
}

.content-text .tagline {
font-size: 16px;
letter-spacing: 4px;
margin: 10px 0 20px;
color: #555;
text-transform: uppercase;
font-weight: 500 !important;
font-family: 'Montserrat', sans-serif !important;
}


.sport-logo{
width: 20% !important;
height: fit-content !important;
filter: brightness(0) invert(1) !important;
color: white !important;
}


.content-text .description {
font-size: 15px;
line-height: 1.6;
color: #555;
max-width: 400px;
font-weight: 500 !important;
font-family: 'Montserrat', sans-serif !important;
}

.bar-btn {
padding: 12px 38px;
font-size: 15px;
margin-top: 30px;
font-family: 'Montserrat', sans-serif !important;
font-weight: 600;
color: #fff;
background: linear-gradient(90deg, #f7d3a2 60%, #e2ae66 100%);
border: none;
border-radius: 30px;
cursor: pointer;
transition: background 0.3s, transform 0.2s, opacity 0.3s;
box-shadow: 0 4px 16px rgba(26,167,180,0.08);
letter-spacing: 2px;
text-transform: uppercase;
opacity: 0;
pointer-events: none;
text-decoration: none !important;
}

.bar-btn:hover,
.bar-btn:active {
background: linear-gradient(90deg, #e2ae66 60%, #f7d3a2 100%);
transform: scale(1.04);
color: #fff;
}

.sports-bar:hover .bar-btn,
.sports-bar:focus-within .bar-btn {
opacity: 1;
pointer-events: all;
}

.image::after {
content: '';
position: absolute;
inset: 0;
background-color: transparent !important;
}

/* Mobile responsive for sports-bar */
@media (max-width: 768px) {
.sports-bar {
  height: auto;
  min-height: 500px;
  margin-bottom: 30px !important;
  background-color: #e4d7c5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}
.image {
  position: static;
  width: 90% !important;
  height: 180px !important;
  margin: 0 auto 20px auto;
  border-radius: 10px;
  display: block;
  /*gap: 50px !important;*/
  transform: none;
}
.image-left,
.image-right {
  margin-top: 0;
  margin-bottom: 10px !important;
}
.content {
  position: static;
  transform: none;
  width: 95%;
  max-width: 95vw;
  height: auto;
  margin: 0 auto;
  padding: 20px 10px;
  border-radius: 10px;
  background-color: #e4d7c5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.content-text h2 {
  font-size: 28px;
}
.content-text .tagline {
  font-size: 13px;
  letter-spacing: 2px;
  margin: 8px 0 1px;
}

.sport-logo {
  width: 40% !important;
  height: 40% !important;
}

.content-text .description {
  font-size: 13px;
  max-width: 100%;
  padding: 0 5px;
}

.bar-btn {
  padding: 10px 24px !important;
  font-size: 13px;
  margin-top: 18px;
  letter-spacing: 1px;
  opacity: 1;
  pointer-events: auto;
  width: 100%;
  max-width: 220px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
}

/* middle section */

.main-container {
display: flex;
height: 100vh;
background-color: #F1EBE3;
margin-bottom: 100px;
}

.main-title{
font-family: "Marcellus", serif !important;
font-size: 40px !important;
}

.left-image {
width: 30%;
}

.center-content {
width: 60%;
background: #e4d7c5;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 40px;
}

.right-image {
width: 30% !important;
}

.left-image img,
.right-image img {
min-width: 115% !important;
height: auto !important;
}

.right-image img {
margin-top: 35% !important;
margin-left: -15% !important;
}

.left-image img {
position: relative !important;
margin-top: 20% !important;
}

.main-title {
font-size: 48px;
font-weight: bold;
line-height: 1.2;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 2px;
}

.subtitle {
font-size: 16px;
letter-spacing: 4px;
margin-bottom: 40px;
text-transform: uppercase;
opacity: 0.8;
}

.decorative-flower img {
max-width: 70%;
height: auto;
}

.description {
font-size: 14px;
line-height: 1.6;
margin-bottom: 40px;
max-width: 400px;
opacity: 0.9;
margin-top: -30px;
}
    @media (max-width: 1368px) {
.main-container {
  height: auto;
}

.left-image img{
    margin-top: 20% !important;
}

  .right-image img{
    margin-top: 40% !important;
}
.main-title{
    font-size: 2rem !important;
}
}

@media (max-width: 1200px) {
.left-image {
  background-image: url("https://fidalgo.qodeinteractive.com/wp-content/uploads/2023/09/events-img1.jpg");
  background-size: cover;
}
.right-image {
  background-image: url("https://fidalgo.qodeinteractive.com/wp-content/uploads/2023/09/h3-img2.jpg");
  background-size: cover;
}

.left-image img {
  width: 100% !important;
  margin: 0 !important;
  display: none !important;
}

.main-title {
  font-size: 2rem !important;
}

.right-image img {
  width: 100% !important;
  margin: 0 !important;
  display: none !important;
}
}

@media (max-width: 992px) {
.main-title {
  font-size: 2rem !important;
}
.left-image {
  display: none !important;
}
.right-image {
  display: none !important;
}
.center-content {
  width: 100%;
  height: 50%;
  padding: 20px 0px !important;
}
}

@media (max-width: 768px) {
.main-container {
  flex-direction: column;
    height: auto;
}

.center-content {
  width: 100%;
  height: 50%;
  padding: 20px 0px !important;
}

.main-title {
  font-size: 2rem !important;
}

.left-image {
  display: none !important;
}
.right-image {
  display: none !important;
}
}

@media (max-width: 576px){
.main-title {
  font-size: 1.5rem !important;
}
}

@media (max-width: 470px){
.main-title {
  font-size: 1.2rem !important;
}

.center-content {
  padding: 0;
}

p.description {
  font-size: 0.8rem;
  padding-left: 10px;
  padding-right: 10px;
}

.slider-track {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 60px !important;
}
}