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

img, iframe {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

/* moved from inline styles in index.html */
#home.home-animate {
  animation: homePop 1.2s cubic-bezier(0.4,0,0.2,1);
}
@keyframes homePop {
  0% { transform: scale(0.98) translateY(40px); opacity: 0.7; }
  60% { transform: scale(1.04) translateY(-10px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
#cafe.cafe-animate {
  animation: cafePop 1.2s cubic-bezier(0.4,0,0.2,1);
}
@keyframes cafePop {
  0% { transform: scale(0.98) translateY(40px); opacity: 0.7; }
  60% { transform: scale(1.04) translateY(-10px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
/* navigation bar */
.nav{
    width: auto;
}

.navbar-brand-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.navbar-brand{
    font-size: 25px;
    color: #8B4513 !important;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif !important;
    margin-bottom: 2px;
}


 .sub-line {
    text-transform: uppercase;
    margin: -10px 0px 0px 0px;
    letter-spacing: 0.2px;
    list-style: none;
    font-size: 10px;
    display: flex;
    font-weight: normal;  
    color: #525252 !important;
    justify-content: flex-start;
    padding: 0;
    gap: 5px;
    width: auto;
}

.sub-line li {
    white-space: nowrap;
}
.fas.fa-phone{
    margin-right: 5px;
}

#call-us{
    border: solid 1px #8B4513;
    padding: 5px 10px;
    border-radius: 20px;
    width: 100px;
    color: #8B4513;
    transition: all 0.3s ease;
    top: 0;
    position: relative;
}

#whatsapp{
    border: solid 1px forestgreen;
    padding: 5px 10px;
    border-radius: 20px;
    width: 120px;
    color: forestgreen;
    transition: all 0.3s ease;
    top: 0;
    position: relative;
}

#whatsapp:hover{
    background-color: forestgreen;
    color: white;
    transform: scale(1.06);
}

#call-us:hover{
    background-color: #8B4513;
    color: white;
    transform: scale(1.06);
}

#whatsapp > span{
    margin-right: 5px;
}

.button-nav {
    display: flex;
    gap: 14px !important;
    align-items: center;
}

.navbar-nav > li{
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

/* home section */
#home{
    background: url('images/Cafe.png') no-repeat center center;
    background-size: cover !important;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

#home::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.1);
}

#home > *{
    position: relative;
    z-index: 2;
}

.fas.fa-mug-hot{
    color: #8B4513 !important;
    font-size: 60px !important;
    margin-bottom: 20px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
    position: relative;
    top: 0;
    transition: top 0.3s ease;
}

.fas.fa-mug-hot:hover{
    top: -5px !important;
}

.cover-text{
    font-family: 'Poppins', sans-serif !important;
    color: white !important;
    font-size: 40px !important;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.cover-text-2{
    background: linear-gradient(to right, #8B4513, rgb(149, 105, 105)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 50px !important;
    font-weight: bold;
}

.cover-text + h2 {
    color: #E5E7EB !important;
    font-weight: normal ;
    font-size: 25px !important;
    letter-spacing: -1px !important;
    text-transform: none !important;
}

.cover-para{
    color: #E5E7EB !important;
    font-size: 18px !important;
    font-weight: normal !important;
    margin-top: 10px !important;

}

.menu-button{
    border-radius: 40px;
    background-color: #8B4513 !important;
    color: white !important;
    font-weight: bold !important;
    padding: 8px 16px !important;
    border: none !important;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0;
    transition: top 0.3s ease;
    max-height: fit-content !important;
    max-width: fit-content !important;
}

.menu-button i{
  font-size: 25px !important;
  margin-right: 10px !important;
}

.button-container{
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    
}

.menu-button:hover,
.call-button:hover{
    top: -5px;
}

.menu-button > span {
    color: white !important;
    font-size: 14px !important;
    margin-right: 6px !important;
    line-height: 1;
    position: relative;
    top: 7px;
}

.call-button{
    border-radius: 40px;
    border: 2px solid #8B4513 !important;
    background-color: transparent !important;
    color: #8B4513 !important;
    font-weight: bold !important;
    padding: 8px 16px !important;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0;
    transition: top 0.3s ease;
}

.call-button::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.09);
    z-index: 1;
    border-radius: 40px;
}

#home > .open-hours{
    color: #E5E7EB !important;
    font-size: 14px !important;
    font-weight: normal !important;
    text-align: center !important;
    position: relative;
    font-family: 'Montserrat', sans-serif !important;
    margin-top: 20px !important;
}

/* our cafe section */
.testimonial{
    font-family: 'Montserrat', sans-serif !important;
    font-size: 20px !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    margin-top: 20px !important;
    margin-left: 20px !important;
    background: linear-gradient(to bottom, white, rgb(254, 245, 245)) !important;
}

.testimonial h1, .main-h1heading{
    color: #8B4513 !important;
    font-weight: bold !important;
    margin-bottom: 3rem !important;
}

.testimonial i, .icon1i{
    color: rgb(221, 165, 60);
    margin: 0 10px 0;
    font-size: 3rem !important;
}

.testimonial h3, .main-h3heading{
    font-size: 2rem !important;
    letter-spacing: 0.1rem !important;
    margin: 2rem 0 1rem 0 !important;
}

.testimonial p, .main-pheading{
    font-size: 1.5rem !important;
    letter-spacing: 0.1rem !important;
    margin: 2rem 0 1rem 0 !important;
    color: #666 !important;
}

#must-try{
    text-decoration: underline;
    margin-bottom: 5rem !important;
}

.card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}
.card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-img img {
    transform: scale(1.08);
}

.badge-price {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: green;
    color: white;
    padding: 5px 12px;
    font-size: 13px;
    border-radius: 20px;
}
.badge-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 8px;
    border-radius: 50%;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.card-body {
    padding: 2rem;
    height: 12rem;
}
.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #B4512B;
    margin-bottom: 8px;
}
.card-text {
    font-size: 13px;
    color: #666;
} 

.badge-price-1 {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: max-content;
    z-index: 10;
}

.badge-price-1:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.best-3d-card{
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}
.best-3d-card:hover{
    transform: rotateY(10deg);
}

  /* wifi section */
.wifi-ani{
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.wifi-ani:hover{
    transform: scale(1.04) rotateZ(-1deg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.facilities{
    padding: 7rem 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5rem !important;
  }
.wifi, .book-button, .tournament-img {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
.wifi{
    height: 25rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 9rem 0 0 0;
    padding: 10px 20px;
    border-radius: 20px;
}


.icon{
    background-color: antiquewhite;
    border-radius: 50%;
    padding: 10px 15px 20px;
    font-size: 20px;
    color: #8B4513;
}

@media (max-width: 768px) {
  .facilities {
    flex-direction: column;
    gap: 2rem !important;
    margin: 0 2rem 0 !important;
}
}
  .wifi {
    width: 100% !important;
    margin: 2rem 1.5rem 0;
}

.wifi h3{
    color: #8B4513 !important;
    font-weight: 500 !important;
}

/* cozy section */
.cozy-text{
    text-align: left !important;
    color: #8B4513 !important;
}

.cozy-text p {
    margin-top: 2rem !important;
}

.cozy-text h1{
    margin-bottom: 6rem !important;
    text-transform: capitalize !important;
}

.cozy-text p::before{
    content: '';
    position: absolute;
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    margin-top: 0.5rem !important;
    left: -1rem;
    background-color: red;
}

.cozy{
    margin-top: 5rem !important;
}

.cozy img {
  max-width: 100%;
  margin-top: 6rem !important;
  margin-right: 0 !important;
  height: 25rem;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem !important;
}

@media (max-width: 768px) {
  .cozy img {
    max-width: 420px;
    margin-left: 1rem !important;
    margin-right: 0 !important;
  }
  #home { background-attachment: scroll !important; }
}

/* GAME SECTION */
.game-container{
    background: linear-gradient(to bottom, white, rgb(255, 252, 234)) !important;
}

.game.icon{
    background-color: #8B4513;
}

.bg-icon-1{
    background-color: #FAEBD7 !important;
    color: #8B4513 !important;

}

/* tournaments section */
.tournament-layout {
    align-items: flex-start !important;
    margin-top: 3rem !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 3rem !important;
}

.tournament-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    flex: 1 1 45% !important;
    min-width: 350px !important;
}

.tournament-image-section {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    flex: 1 1 45% !important;
    min-width: 350px !important;
}

.trmt-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem !important;
    margin: 0 !important;
    height: 15rem !important;
    width: 100% !important;
    max-width: 35rem !important;
    text-align: left !important;
    border: none ;
    box-shadow: 0 2px 100px rgba(0,0,0,0.15) ;
    position: relative;
    top: 0;
    transition: top 0.5s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.trmt-card:hover{
    top: -5px;
    box-shadow: 7px 15px 100px rgba(255, 82, 82, 0.35);
    border: 1px solid #8B4513;
}

.trmt-card h1{
    font-size: 2rem !important;
}

.trmt-price {
    position: absolute !important;
    bottom: 20px !important;
    left: 20px !important;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 50%, #e74c3c 100%) !important;
    color: white !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    box-shadow: 0 6px 20px rgba(255, 75, 87, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    z-index: 15 !important;
}

.trmt-price:hover {
    transform: translateY(-3px) scale(1.08) !important;
    box-shadow: 0 10px 30px rgba(255, 75, 87, 0.6) !important;
    background: linear-gradient(135deg, #ffa500 0%, #ff6b35 50%, #ff4757 100%) !important;
}

.tournaments {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tournaments .block {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.tournament-img{
    background-image: url('images/tournament.png');
    height: 32rem;
    width: 100%;
    max-width: 35rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    margin: 0;
    border: solid 2px #c57c5f;
    display: flex !important;
    align-items: flex-end;
    min-height: 32rem;
}

@media(max-width:1200px){
    .tournament-image-section {
        padding-left: 1rem;
    }
    
    .tournament-img{ 
        max-width: 100%;
        height: 28rem;
    }
}

@media(max-width:1200px){
    .tournament-layout {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .tournament-cards {
        flex: 1 1 100% !important;
        min-width: 100% !important;
        margin-bottom: 2rem !important;
    }
    
    .tournament-image-section {
        flex: 1 1 100% !important;
        min-width: 100% !important;
    }
}

@media(max-width:900px){
    .trmt-card{
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 12rem !important;
    }
    
    .tournament-img{ 
        position: static !important;
        max-width: 100% !important;
        height: 25rem !important;
        margin: 0 auto !important;
        display: flex !important;
    }
}

/* Compact tournament image and cozy image on mobile */
@media (max-width: 768px) {
  .tournament-img {
    width: 100% !important;
    max-width: 92vw !important;
    height: 180px !important;
    margin: 1rem auto !important;
  }
  .trmt-card {
    width: 100% !important;
  }
  .cozy img {
    width: 90vw !important;
    max-width: 90vw !important;
    height: auto !important;
    margin: 1rem auto 2rem auto !important;
  }
}

@media (max-width: 400px) {
  .tournament-img { height: 150px !important; }
}

.tournament-img-container{
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #8B4513;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    max-width: calc(100% - 2rem);
}

@media (max-width: 900px) {
    .tournament-img-container{
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 1rem;
        display: block;
    }
}


.tournament-img-container  h1{
    font-size: 1.5rem;
    font-weight: bold;
}

.tournament-img-container p{
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

/* ==============================================
   MODERN TOURNAMENTS SECTION REDESIGN
   ============================================== */

.tournaments-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.tournaments-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 165, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(30, 144, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.tournaments-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.tournaments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tournaments-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tournament-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.tournament-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-header {
  padding: 1.5rem 2rem 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid #f1f3f4;
}

.tournament-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.carrom-card .tournament-icon {
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.chess-card .tournament-icon {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.tournament-badge {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

.card-content {
  padding: 2rem;
}

.tournament-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.tournament-schedule {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: 500;
}

.tournament-schedule i {
  color: #ff6b35;
  font-size: 1.2rem;
}

.tournament-details {
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: #6c757d;
}

.detail-item i {
  color: #28a745;
  font-size: 1rem;
  width: 18px;
}

.tournament-prize {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1.2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  text-align: center;
  border: 1px solid #e9ecef;
}

.prize-label {
  display: block;
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.prize-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ff6b35;
}

.tournament-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.tournament-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.tournament-btn:hover::before {
  left: 100%;
}

.tournament-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: white;
  text-decoration: none;
}

.carrom-card .tournament-btn {
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.carrom-card .tournament-btn:hover {
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.chess-card .tournament-btn {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.chess-card .tournament-btn:hover {
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

/* Community Section */
.community-section {
  position: relative;
}

.community-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  min-height: 600px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.community-image:hover img {
  transform: scale(1.05);
}

.community-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.3) 80%,
    transparent 100%
  );
  padding: 3rem 2rem 2rem 2rem;
  color: white;
}

.community-content {
  text-align: center;
}

.community-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.community-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.community-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.community-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff6b35;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.community-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.community-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for New Tournament Section */
@media (max-width: 1200px) {
  .tournaments-grid {
    gap: 2rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .tournaments-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .community-image {
    min-height: 500px;
  }
  
  .tournaments-section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .tournaments-header {
    margin-bottom: 3rem;
  }
  
  .tournaments-cards {
    gap: 1.5rem;
  }
  
  .tournament-card {
    border-radius: 20px;
  }
  
  .card-header, .card-content {
    padding: 1.5rem;
  }
  
  .tournament-title {
    font-size: 1.5rem;
  }
  
  .community-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .community-content h3 {
    font-size: 1.8rem;
  }
}

/* book section */
.book-button {
    margin-top: 10rem ;
    padding: 10px 2rem;
    border-radius: 20px;
    background-color: white;
    color: #8B4513;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 5px 50px rgba(0,0,0,0.2);
    height: max-content;
}

.book-button ul{
    display: flex;
    gap: 2rem;
    color: #525252;
    font-weight: normal !important;
    margin-top: 1.5rem;

}

.book-now{
    width: max-content;
    height: 4rem;
    border-radius: 20px;
    border: none;
    background-color: #8B4513;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: solid 2px #8B4513;
    box-shadow: 0 5px 50px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10;
    cursor: pointer;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
}

.book-now:hover{
    background-color: white;
    color: #8B4513;
    transform: scale(1.05);
    border: solid 2px #8B4513 !important;
    text-decoration: none;
}

.book-now:active,
.book-now:focus {
    text-decoration: none;
    outline: none;
}

.book-now * {
    pointer-events: none;
}


.book-now-2{
    background-color: white !important;
    color: #8B4513 !important;
    border: solid 2px #8B4513 !important;
}

.row-1{
    display: flex;
    flex-direction: row;
    gap: 3rem;
    margin-top: 2rem;
}

.book-now i{
    margin-right: 10px;
    font-weight: 600;
    font-size: 2rem;
}

.book-button-container{
    padding-bottom: 8rem;
}

/* online food section */

.online-food-container2 {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.online-food-card{
    color: #8B4513;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 20px;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
    gap: 2rem !important;
    background: linear-gradient(to left, white, rgba(80, 17, 6, 0.08)) !important;
}

.online-food-card1{
    background: linear-gradient(to left, white, rgb(231, 255, 207)) !important;
}

.online-food-icon{
    font-size: 5rem;
    padding-top: 3rem;
}

.online-food-card1 button:hover{
    background-color: #666666(128, 255, 2, 0.1);
}

.online-food-card1 button i{
    color: forestgreen;
}

.online-food-card i{
    font-size: 3rem;
    color: #8B4513;
    margin-right: 1rem;
}

.online-food-card p{
    color: #525252;
}



.online-food-button{
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* online ad section */
.online-ad-section {
  background: #fff9ef;
  padding: 3rem 0 2rem 0;
  text-align: center;
  animation: fadeIn 1.2s ease;
  border-radius: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: none;}
}

.online-ad-title {
  color: #8B4513;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.online-ad-platforms {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.online-ad-platform {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  padding: 2rem 2.5rem 1rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  margin-bottom: 1rem;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1);
}
.online-ad-platform:hover {
  transform: scale(1.06) translateY(-6px);
  box-shadow: 0 8px 24px rgba(139,69,19,0.12);
  z-index: 2;
}

.online-ad-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.online-ad-platform p {
  color: #8B4513;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.online-ad-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  max-width: 180px;
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1);
}
.feature:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 8px 24px rgba(139,69,19,0.10);
  z-index: 2;
}

.feature-icon {
  background: #ffe9d1;
  color: #ff9900;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.feature-title {
  color: #8B4513;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.feature-desc {
  color: #525252;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .online-ad-title { font-size: 1.5rem; }
  .online-ad-platforms { flex-direction: column; align-items: center; gap: 1.2rem; }
  .online-ad-features { flex-direction: column; align-items: center; gap: 1.5rem; }
  .feature { max-width: 100%; }
  .online-ad-platform { min-width: 120px; padding: 1.2rem 0.7rem; }
  .online-ad-img { width: 48px; height: 48px; }
  .feature-icon { width: 40px; height: 40px; font-size: 1.3rem; }
}

.brand-values-section {
  background: #fff9ef;
  padding: 4rem 0 3rem 0;
  text-align: center;
}

.brand-values-title {
  color: #8B4513;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.brand-values-subtitle {
  color: #525252;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.brand-values-desc {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.brand-values-quote {
  color: #ff9900;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.brand-values-highlight {
  color: #ff9900;
  font-weight: bold;
  font-style: italic;
}

.brand-values-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.brand-value-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 320px;
  min-width: 220px;
  max-height: max-content;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
}
.brand-value-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 8px 24px rgba(139,69,19,0.12);
  z-index: 2;
}

.brand-value-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

.brand-value-title {
  color: #8B4513;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.brand-value-text {
  color: #525252;
  font-size: 1.05rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .brand-values-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .brand-value-card {
    max-width: 95vw;
    min-width: 0;
    padding: 1.5rem 1rem 1rem 1rem;
  }
  .brand-values-title { font-size: 2rem; }
}

.mission{
    background: #8B4513;
    color: white;
    padding: 3rem 5rem 3rem 5rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.mission h1{
    
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.mission h3{
    font-size: 1.5rem;
    font-weight: 500;
}

.mission p{
    font-size: 1.2rem;
    font-weight: normal;
    font-family: 'Montserrat', sans-serif !important;
}

.gallery-moments-section {
  background: #fff9ef;
  padding: 4rem 0 3rem 0;
  text-align: center;
}

.gallery-title {
  color: #8B4513;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.gallery-subtitle {
  color: #525252;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.gallery-desc {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-stats-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gallery-stat-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 2.2rem 2rem 1.5rem 2rem;
  min-width: 220px;
  max-width: 270px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
}
.gallery-stat-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 8px 24px rgba(139,69,19,0.12);
  z-index: 2;
}

.gallery-stat-icon {
  background: #fff6e6;
  color: #ff9900;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.gallery-stat-number {
  color: #8B4513;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.gallery-stat-label {
  color: #6c757d;
  font-size: 1.05rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  justify-items: center;
}

.gallery-img {
  width: 100%;
  max-width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
}
.gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(139,69,19,0.12);
  z-index: 2;
}

@media (max-width: 900px) {
  .gallery-title { font-size: 2rem; }
  .gallery-stats-cards { flex-direction: column; align-items: center; gap: 1.2rem; }
  .gallery-stat-card { max-width: 95vw; min-width: 0; padding: 1.5rem 1rem 1rem 1rem; }
  .gallery-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .gallery-img { max-width: 95vw; height: 180px; }
}

.instagram-follow-section {
  background: linear-gradient(90deg, #f6a05c 0%, #b05a2a 100%);
  border-radius: 32px;
  margin: 5.5rem 0 2rem 0;
  padding: 3.5rem 1rem 3.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.instagram-follow-content {
  width: 100;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.instagram-icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  color: #fff;
}

.instagram-follow-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #fff;
}

.instagram-follow-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #b05a2a;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 2rem;
  padding: 0.8rem 2.2rem;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.instagram-btn i {
  font-size: 1.3rem;
}
.instagram-btn:hover {
  background: #f6a05c;
  color: #fff;
  box-shadow: 0 4px 18px rgba(176,90,42,0.18);
}

@media (max-width: 700px) {
  .instagram-follow-section {
    border-radius: 18px;
    padding: 2rem 0.5rem 2rem 0.5rem;
  }
  .instagram-follow-content h2 { font-size: 1.3rem; }
  .instagram-follow-content p { font-size: 1rem; }
  .instagram-btn { font-size: 1rem; padding: 0.7rem 1.2rem; }
}

.map-container {
  width: 100%;
  max-width: 700px;
  margin: 2rem auto 3rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.map-container iframe {
  width: 100% !important;
  max-width: 100vw;
  height: 400px;
  border: 0;
  border-radius: 20px;
  display: block;
}
@media (max-width: 900px) {
  .map-container { max-width: 98vw; }
  .map-container iframe { height: 220px; }
}

.site-footer {
  background: #8B4513;
  color: #fff;
  padding: 0 0 1.5rem 0;
  font-family: 'Montserrat', sans-serif;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 2rem 1.5rem 2rem;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 320px;
}

.footer-col.about {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}
.footer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 0.5rem;
}
.footer-icon {
  color: #fff;
  font-size: 2rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
  color: #fff;
  font-size: 1rem;
}
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #ffd6b0;
}

.footer-socials {
  margin-top: 1.2rem;
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background 0.2s, color 0.2s;
}
.footer-socials a:hover {
  background: #fff;
  color: #b05a2a;
}

.footer-values-bar {
  background: rgba(255,255,255,0.08);
  border-radius: 24px;
  margin: 2.5rem auto 1.5rem auto;
  max-width: 90vw;
  padding: 1.2rem 1.5rem 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-values-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 0.7rem;
}
.footer-values-list {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  width: 100%;
  margin-top: 0.5rem;
}
.footer-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 1.1rem;
  gap: 0.3rem;
}
.footer-value i {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
  color: #ffd6b0;
}
.footer-value span {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 1.5rem auto 0 auto;
  max-width: 1300px;
  padding: 1rem 2rem 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: #fff;
  flex-wrap: wrap;
}
.footer-made-with {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1rem;
}
.footer-made-with i {
  color: #ffd6b0;
  font-size: 1.1rem;
}

.footer-author-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  position: relative;
}

.footer-author-link:hover {
  color: #fff;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

@media (max-width: 1100px) {
  .footer-main {
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-col {
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem 0.5rem 1rem 0.5rem;
    max-width: 500px;
    margin: 0 auto;
  }
  .footer-col {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo, .footer-socials {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .footer-main {
    padding: 1.2rem 0.2rem 0.7rem 0.2rem;
    max-width: 98vw;
  }
  .footer-col {
    max-width: 98vw;
    padding: 0 0.2rem;
  }
}

/* --- MOBILE FULL-WIDTH FIX (refined) --- */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: hidden !important;
}
img, iframe {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}
/* --- END MOBILE FULL-WIDTH FIX (refined) --- */