*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Inter;
background:#faf8f5;
color:#333;
}

/* LOADER */

#loader{
position:fixed;
width:100%;
height:100vh;
background:#111;
display:flex;
justify-content:center;
align-items:center;
z-index:9999;
}

/* Loader logo */
.loader-logo{
width:120px;
animation:fade 2s infinite;
}

@keyframes fade{
0%{opacity:.3}
50%{opacity:1}
100%{opacity:.3}
}


/* NAVBAR */

.navbar{
position:fixed;
top:0;
width:100%;
background:rgba(255,255,255,0.8);
backdrop-filter:blur(10px);
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
}

/* Navbar logo */
.logo img{
height:45px;
width:auto;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#333;
font-family:Playfair Display;
}

nav a:hover{
color:#F25800;
}


/* HERO */

.hero{
height:100vh;
background:url('../capture/venue/hero.jpeg') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.35);
}

.hero-content{
position:relative;
color:white;
}

.hero h1{
font-family:Playfair Display;
font-size:70px;
}

.hero p{
margin-top:10px;
font-size:20px;
}

.btn{
display:inline-block;
margin-top:20px;
background:#F25800;
padding:12px 28px;
color:white;
text-decoration:none;
}


/* SECTIONS */

.section{
padding:20px 10%;
text-align:center;
}

.section h2{
font-family:Playfair Display;
font-size:40px;
margin-bottom:30px;
}

/* SERVICES */

.service-grid{
display:grid;
grid-template-columns:repeat(6, 1fr);
gap:30px;
margin-top:60px;
}

.service-card{
grid-column:span 2;
background:white;
padding:35px;
border-radius:8px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:.3s;
text-align:center;
}

.service-card:hover{
transform:translateY(-8px);
}

/* When there are exactly 5 cards, make cards 4 and 5 wider */
.service-grid .service-card:nth-child(4):nth-last-child(2),
.service-grid .service-card:nth-child(5):nth-last-child(1){
grid-column:span 3;
}

@media (max-width:900px){
  .service-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .service-card,
  .service-grid .service-card:nth-child(4):nth-last-child(2),
  .service-grid .service-card:nth-child(5):nth-last-child(1){
    grid-column:span 1;
  }
}

@media (max-width:600px){
  .service-grid{
    grid-template-columns:1fr;
  }

  .service-card,
  .service-grid .service-card:nth-child(4):nth-last-child(2),
  .service-grid .service-card:nth-child(5):nth-last-child(1){
    grid-column:span 1;
  }
}



/* SERVICE CARDS AS GALLERY TABS */
.service-gallery-nav {
  margin-top: 2rem;
}

.gallery-trigger {
  border: none;
  text-align: center;
  background: #fff;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.gallery-trigger:hover {
  transform: translateY(-4px);
}

.gallery-trigger.active {
  background: #111;
  color: #fff;
}

.gallery-trigger.active h3,
.gallery-trigger.active p {
  color: #fff;
}

/* GALLERY */
.service-gallery-wrap {
  margin-top: 0;
}

.gallery-section {
  display: none;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-section.active {
  display: block;
}

.gallery-section h3 {
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.gallery-placeholder {
  padding: 60px 20px;
  border-radius: 12px;
  background: #f5f5f5;
  text-align: center;
  font-style: italic;
  color: #666;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
}

.lightbox.show {
  display: flex;
}

#lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* LIGHTBOX */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

#lightbox.show {
  display: flex;
}

#lightbox-img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 12px;
}

.close {
  position: absolute;
  top: 40px;
  right: 60px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}

.lightbox-controls {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.lightbox-controls button {
  pointer-events: auto;
  font-size: 30px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-controls button:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* MAP */

.map iframe{
width:100%;
height:300px;
border:none;
margin-top:30px;
}

/* FOOTER */

.footer{
background:#111;
color:white;
padding:60px 10% 30px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:40px;
margin-bottom:40px;
}

.footer h3{
font-family:Playfair Display;
margin-bottom:10px;
}

.footer h4{
margin-bottom:15px;
}

.footer-links a{
display:block;
color:#ccc;
text-decoration:none;
margin-bottom:8px;
}

.footer-links a:hover{
color:#F25800;
}

.footer-bottom{
border-top:1px solid #333;
padding-top:20px;
display:flex;
flex-direction:column;
align-items:center;
gap:10px;
text-align:center;
font-size:14px;
}

.footer-bottom a{
color:#F25800;
text-decoration:none;
}


/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
padding:14px 18px;
border-radius:50px;
text-decoration:none;
}

/* ABOUT SECTION */

.about-section{
max-width:1200px;
margin:auto;
}

.section-title{
font-family:Playfair Display;
font-size:42px;
margin-bottom:60px;
text-align:center;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
margin-bottom:80px;
}

.about-grid.reverse{
grid-template-columns:1fr 1fr;
}

.about-text{
font-size:16px;
line-height:1.8;
color:#555;
}

.about-text h3{
font-family:Playfair Display;
font-size:28px;
margin-bottom:20px;
color:#111;
}

.lead{
font-size:18px;
margin-bottom:20px;
color:#333;
}

.about-image img{
width:100%;
border-radius:8px;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
transition:transform .4s ease;
}

.about-image img:hover{
transform:scale(1.03);
}


/* MOBILE */

@media(max-width:900px){

.about-grid{
grid-template-columns:1fr;
gap:40px;
}

.about-grid.reverse{
grid-template-columns:1fr;
}

}