*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#f5f5f5;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:15px 40px;
  background:rgba(0,0,0,0.85);
  color:white;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.navbar h2{
  color:gold;
  font-size:24px;
}

/* HERO */
.hero{
  height:100vh;
  background:
    linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url("C:/Users/dhara/OneDrive/Desktop/photoshootwebsite/pre-1.jpg");
  background-size:cover;
  background-position:center;
  color:white;
  text-align:center;
  padding-top:220px;
}
.hero h1{
  font-size:48px;
  font-weight:bold;
}
.hero p{
  margin-top:15px;
  font-size:18px;
}

/* EVENTS */
.events{
  padding:80px 40px;
  text-align:center;
}
.events h2{
  margin-bottom:30px;
}

.event-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:25px;
}

.event{
  height:220px;
  border-radius:18px;
  background-size:cover;
  background-position:center;
  position:relative;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.event:hover{
  transform: scale(1.05);
}
.event::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  border-radius:18px;
}
.event h3{
  position:absolute;
  bottom:20px;
  left:20px;
  color:white;
  font-size:22px;
}

/* GALLERY */
.gallery{
  display:none;
  padding:70px 40px;
  background:white;
}
.gallery h2{
  text-align:center;
  margin-bottom:30px;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}
.photo{
  height:200px;
  border-radius:15px;
  background-size:cover;
  background-position:center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.photo:hover{
  transform: scale(1.05);
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

/* FOOTER */
.footer{
  background:black;
  color:white;
  text-align:center;
  padding:20px;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

/* ===== NAVBAR ===== */
.navbar{
    background:black;
    padding:15px 40px;
}
.navbar h2{
    color:gold;
    display:inline-block;
}
.navbar a{
    color:white;
    margin-left:25px;
    text-decoration:none;
    cursor:pointer;
}
.navbar a:hover{
    color:gold;
}

/* ===== GALLERY ===== */
.gallery-section{
    padding:60px 40px;
    background:#f4f4f4;
    text-align:center;
}
.gallery-section h1{
    margin-bottom:10px;
}
.gallery-section p{
    color:#555;
    margin-bottom:40px;
}

.gallery-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap:25px;
}

/* ===== IMAGE CARD ===== */
.photo-card{
    height:240px;
    border-radius:15px;
    overflow:hidden;
    position:relative;
    box-shadow:0 8px 15px rgba(0,0,0,0.3);
    cursor:pointer;
    transition:0.4s;
}
.photo-card::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}
.photo-card h3{
    position:absolute;
    bottom:20px;
    left:20px;
    color:white;
    font-size:22px;
}
.photo-card:hover{
    transform:scale(1.05);
}

/* ===== MODAL ===== */
.modal{
    display:none;
    position:fixed;
    top:0; left:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.9);
    z-index:10000;
    justify-content:center;
    align-items:center;
}
.modal-content{
    max-width:90%;
    max-height:90%;
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}
.modal-content img{
    width:200px;
    height:150px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
}
.modal-content img:hover{
    transform:scale(1.05);
}
.close-modal{
    position:absolute;
    top:20px;
    right:30px;
    color:white;
    font-size:28px;
    font-weight:bold;
    cursor:pointer;
}

/* ===== BOOK FORM ===== */
#bookForm{
    display:none;
    position:fixed;
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.4);
    z-index:10001;
}
#bookForm h3{
    margin-bottom:20px;
}
#bookForm input, #bookForm textarea{
    width:100%;
    padding:10px;
    margin-bottom:15px;
    border-radius:5px;
    border:1px solid #ccc;
}
#bookForm button{
    padding:10px 20px;
    border:none;
    background:gold;
    color:black;
    font-weight:bold;
    cursor:pointer;
    border-radius:5px;
}

/* ===== FOOTER ===== */
.footer{
    background:black;
    color:white;
    text-align:center;
    padding:18px;
    margin-top:40px;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Arial', sans-serif;
}

/* ===== NAVBAR ===== */
.navbar{
    background:black;
    padding:15px 40px;
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
}
.navbar h2{
    color:gold;
    display:inline-block;
}
.navbar a{
    color:white;
    margin-left:25px;
    text-decoration:none;
    cursor:pointer;
}
.navbar a:hover{
    color:gold;
}

/* ===== PAGE HEADER ===== */
.header{
    height:300px;
    background:
    linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url('C:/Users/dhara/OneDrive/Desktop/photoshootwebsite/pre-1.jpg');
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding-top:110px;
}
.header h1{
    font-size:38px;
}
.header p{
    margin-top:10px;
    font-size:18px;
}

/* ===== FORM SECTION ===== */
.form-section{
    padding:80px 20px;
    background:#f4f4f4;
    display:flex;
    justify-content:center;
    min-height: calc(100vh - 300px - 60px);
}

.form-box{
    background:white;
    padding:40px;
    width:450px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.form-box h2{
    text-align:center;
    margin-bottom:25px;
    color:#333;
}

.form-box label{
    font-weight:bold;
    display:block;
    margin-bottom:6px;
}

.form-box input,
.form-box select,
.form-box textarea{
    width:100%;
    padding:12px;
    margin-bottom:18px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:15px;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus{
    outline:none;
    border-color:gold;
    box-shadow:0 0 8px rgba(255,215,0,0.5);
}

.form-box button{
    width:100%;
    padding:14px;
    background:gold;
    border:none;
    font-size:16px;
    font-weight:bold;
    border-radius:25px;
    cursor:pointer;
    transition:0.3s;
}

.form-box button:hover{
    background:black;
    color:white;
}

/* ===== FOOTER ===== */
.footer{
    background:black;
    color:white;
    text-align:center;
    padding:18px;
    margin-top:40px;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

/* ===== NAVBAR ===== */
.navbar{
    background:black;
    padding:15px 40px;
}
.navbar h2{
    color:gold;
    display:inline-block;
}
.navbar a{
    color:white;
    margin-left:25px;
    text-decoration:none;
}
.navbar a:hover{
    color:gold;
}

/* ===== HEADER ===== */
.header{
    height:250px;
    background:
    linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee");
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding-top:90px;
}
.header h1{
    font-size:36px;
}
.header p{
    margin-top:10px;
}

/* ===== CONTACT SECTION ===== */
.contact-section{
    padding:60px;
    background:#f4f4f4;
    display:flex;
    justify-content:space-around;
    flex-wrap:wrap;
}

/* LEFT INFO */
.contact-info{
    width:40%;
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}
.contact-info h2{
    margin-bottom:20px;
}
.contact-info p{
    font-size:16px;
    margin-bottom:15px;
}

/* RIGHT FORM */
.contact-form{
    width:40%;
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}
.contact-form h2{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:10px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:6px;
}

.contact-form button{
    width:100%;
    padding:12px;
    background:gold;
    border:none;
    font-size:16px;
    border-radius:25px;
    cursor:pointer;
}
.contact-form button:hover{
    background:black;
    color:white;
}

/* ===== FOOTER ===== */
.footer{
    background:black;
    color:white;
    text-align:center;
    padding:18px;
    margin-top:40px;
}
/* ===== COMMON ===== */
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#f5f5f5;
}

/* ===== NAVBAR ===== */
.navbar{
  background:black;
  color:gold;
  padding:15px 30px;
}
.navbar a{
  color:white;
  margin-left:20px;
  text-decoration:none;
  cursor:pointer;
}
.navbar a:hover{
  color:gold;
}

/* ===== GALLERY SECTION ===== */
.gallery-section{
  padding:40px;
  text-align:center;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-top:30px;
}
.photo-card{
  height:220px;
  color:white;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:15px;
  font-size:20px;
  cursor:pointer;
  border-radius:10px;
}

/* ===== MODAL ===== */
.modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.8);
  justify-content:center;
  align-items:center;
  z-index:10;
}
.modal-content{
  background:white;
  padding:20px;
  max-width:900px;
  width:90%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  border-radius:10px;
}
.close-modal{
  position:absolute;
  top:20px;
  right:30px;
  font-size:35px;
  color:white;
  cursor:pointer;
}

/* ===== MODAL PHOTOS ===== */
.modal-photo img{
  width:100%;
  border-radius:10px;
}
.like-btn{
  margin-top:8px;
  padding:6px 14px;
  border:none;
  background:#e60023;
  color:white;
  border-radius:20px;
  cursor:pointer;
}
.like-btn:hover{
  background:#b8001a;
}

/* ===== LIKED PAGE ===== */
.header{
  background:black;
  color:gold;
  padding:20px;
  text-align:center;
}
.back{
  text-align:center;
  margin:20px;
}
.back a{
  text-decoration:none;
  font-weight:bold;
  color:black;
}
.gallery-liked{
  padding:30px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}
.card{
  background:white;
  padding:10px;
  border-radius:10px;
  box-shadow:0 4px 10px rgba(0,0,0,0.2);
}
.card img{
  width:100%;
  border-radius:10px;
}
.remove{
  margin-top:10px;
  width:100%;
  padding:8px;
  background:#e60023;
  color:white;
  border:none;
  border-radius:20px;
  cursor:pointer;
}
.remove:hover{
  background:#b8001a;
}
/* ===== BODY ===== */
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:linear-gradient(to right, #fdfbfb, #ebedee);
}

/* ===== HEADER ===== */
.saved-header{
  background:linear-gradient(135deg,#000,#222);
  color:gold;
  padding:40px 20px;
  text-align:center;
}
.saved-header h1{
  margin:0;
  font-size:36px;
}
.saved-header p{
  color:#ddd;
  margin-top:8px;
}

/* ===== BACK LINK ===== */
.saved-back{
  text-align:center;
  margin:20px;
}
.saved-back a{
  text-decoration:none;
  font-weight:bold;
  color:#000;
}
.saved-back a:hover{
  color:#e60023;
}

/* ===== GALLERY GRID ===== */
.saved-gallery{
  padding:40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

/* ===== CARD ===== */
.saved-card{
  background:white;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
  transition:transform 0.3s;
}
.saved-card:hover{
  transform:translateY(-6px);
}
.saved-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}
.saved-card button{
  width:100%;
  padding:12px;
  border:none;
  background:#e60023;
  color:white;
  font-size:15px;
  cursor:pointer;
}
.saved-card button:hover{
  background:#b8001a;
}

/* ===== EMPTY STATE ===== */
.empty{
  grid-column:1/-1;
  text-align:center;
  padding:60px;
  color:#555;
}
.empty h2{
  margin-bottom:10px;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#f5f5f5;
}

/* NAVBAR */
.navbar{
  background:black;
  padding:15px 40px;
}

.navbar h2{
  color:gold;
}

/* HERO */
.hero{
  text-align:center;
  padding:50px 20px;
}

/* EVENTS */
.events{
  padding:40px;
  text-align:center;
}

.event-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}

.event{
  height:160px;
  background-size:cover;
  background-position:center;
  border-radius:10px;
  display:flex;
  align-items:end;
  justify-content:center;
  cursor:pointer;
}

.event h3{
  background:rgba(0,0,0,0.6);
  color:white;
  width:100%;
  padding:10px;
}

/* GALLERY */
.gallery{
  padding:40px;
  display:none;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:20px;
}

.photo{
  height:180px;
  background-size:cover;
  background-position:center;
  border-radius:10px;
  position:relative;
}

/* LIKE + SAVE */
.photo-actions{
  position:absolute;
  bottom:0;
  width:100%;
  display:flex;
  justify-content:space-around;
  background:rgba(0,0,0,0.6);
}

.photo-actions button{
  background:none;
  border:none;
  color:white;
  font-size:18px;
  padding:6px;
  cursor:pointer;
}

/* FOOTER */
.footer{
  text-align:center;
  padding:20px;
  background:black;
  color:white;
  margin-top:40px;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#f5f5f5;
}

/* NAVBAR */
.navbar{
  background:black;
  padding:15px 40px;
}

.navbar h2{
  color:gold;
}

/* HERO – MAIN CHANGE */
.hero{
  padding:80px 20px;
  text-align:center;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("https://images.unsplash.com/photo-1520854221256-17451cc331bf");
  background-size:cover;
  background-position:center;
}

.hero h1{
  color:gold;
  font-size:48px;
  letter-spacing:2px;
}

.hero p{
  color:white;
  margin-top:15px;
  font-size:17px;
}

/* EVENTS */
.events{
  padding:40px;
  text-align:center;
}

.event-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}

.event{
  height:160px;
  background-size:cover;
  background-position:center;
  border-radius:10px;
  display:flex;
  align-items:end;
  justify-content:center;
  cursor:pointer;
}

.event h3{
  background:rgba(0,0,0,0.6);
  color:white;
  width:100%;
  padding:10px;
}

/* GALLERY */
.gallery{
  padding:40px;
  display:none;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:20px;
}

.photo{
  height:180px;
  background-size:cover;
  background-position:center;
  border-radius:10px;
  position:relative;
}

.photo-actions{
  position:absolute;
  bottom:0;
  width:100%;
  display:flex;
  justify-content:space-around;
  background:rgba(0,0,0,0.6);
}

.photo-actions button{
  background:none;
  border:none;
  color:white;
  font-size:18px;
  padding:6px;
  cursor:pointer;
}

/* FOOTER */
.footer{
  background:black;
  color:white;
  text-align:center;
  padding:20px;
  margin-top:40px;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#f5f5f5;
}

/* NAVBAR */
.navbar{
  background:black;
  padding:15px 40px;
}

.navbar h2{
  color:gold;
}

/* HERO – FLORAL WEDDING BACKGROUND */
.hero{
  padding:90px 20px;
  text-align:center;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("https://images.unsplash.com/photo-1509042239860-f550ce710b93");
  background-size:cover;
  background-position:center;
}

.hero h1{
  color:gold;
  font-size:46px;
  letter-spacing:2px;
}

.hero p{
  color:#f1f1f1;
  margin-top:15px;
  font-size:17px;
}

/* EVENTS */
.events{
  padding:40px;
  text-align:center;
}

.event-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}

.event{
  height:160px;
  background-size:cover;
  background-position:center;
  border-radius:10px;
  display:flex;
  align-items:end;
  justify-content:center;
  cursor:pointer;
}

.event h3{
  background:rgba(0,0,0,0.6);
  color:white;
  width:100%;
  padding:10px;
}

/* GALLERY */
.gallery{
  padding:40px;
  display:none;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:20px;
}

.photo{
  height:180px;
  background-size:cover;
  background-position:center;
  border-radius:10px;
  position:relative;
}

.photo-actions{
  position:absolute;
  bottom:0;
  width:100%;
  display:flex;
  justify-content:space-around;
  background:rgba(0,0,0,0.6);
}

.photo-actions button{
  background:none;
  border:none;
  color:white;
  font-size:18px;
  padding:6px;
  cursor:pointer;
}

/* FOOTER */
.footer{
  background:black;
  color:white;
  text-align:center;
  padding:20px;
  margin-top:40px;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#f5f5f5;
}

/* NAVBAR */
.navbar{
  background:black;
  padding:15px 40px;
}

.navbar h2{
  color:gold;
}

/* BOOKING FORM */
.booking-container{
  width:400px;
  background:white;
  padding:25px;
  margin:40px auto;
  border-radius:8px;
}

.booking-container h1{
  text-align:center;
  margin-bottom:20px;
}

.booking-container input,
.booking-container select,
.booking-container textarea{
  width:100%;
  padding:10px;
  margin-bottom:12px;
}

.booking-container button{
  width:100%;
  padding:10px;
  background:black;
  color:white;
  border:none;
  cursor:pointer;
}

/* SUCCESS BOX */
.success-box{
  width:400px;
  background:#e9ffe9;
  margin:20px auto;
  padding:20px;
  text-align:center;
  display:none;
  border-radius:8px;
}

.success-box button{
  margin-top:10px;
  padding:8px 15px;
  cursor:pointer;
}

/* MY BOOKING */
.my-booking{
  width:400px;
  background:white;
  margin:30px auto;
  padding:20px;
  display:none;
  border-radius:8px;
}

.pending{
  color:orange;
  font-weight:bold;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body{
  background:linear-gradient(135deg,#f3f4f7,#e6e9f0);
}

/* ===== NAVBAR ===== */
.navbar{
  background:#111;
  padding:18px 50px;
  box-shadow:0 2px 8px rgba(0,0,0,0.2);
}

.navbar h2{
  color:gold;
  letter-spacing:1px;
  font-weight:600;
}

/* ===== BOOKING FORM ===== */
.booking-container{
  width:420px;
  background:#fff;
  padding:30px;
  margin:50px auto;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.booking-container h1{
  text-align:center;
  margin-bottom:25px;
  font-size:24px;
  color:#222;
}

.booking-container input,
.booking-container select,
.booking-container textarea{
  width:100%;
  padding:12px;
  margin-bottom:14px;
  border:1px solid #ccc;
  border-radius:6px;
  outline:none;
  transition:0.3s;
}

.booking-container input:focus,
.booking-container select:focus,
.booking-container textarea:focus{
  border-color:#111;
}

.booking-container textarea{
  resize:none;
  height:90px;
}

.booking-container button{
  width:100%;
  padding:12px;
  background:linear-gradient(135deg,#111,#333);
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:15px;
  cursor:pointer;
  transition:0.3s;
}

.booking-container button:hover{
  background:linear-gradient(135deg,#000,#222);
  transform:translateY(-1px);
}

/* ===== SUCCESS BOX ===== */
.success-box{
  width:420px;
  background:#f0fff4;
  margin:30px auto;
  padding:25px;
  text-align:center;
  display:none;
  border-radius:12px;
  box-shadow:0 8px 25px rgba(0,0,0,0.12);
  border-left:6px solid #2ecc71;
}

.success-box h2{
  color:#2ecc71;
  margin-bottom:10px;
}

.success-box p{
  margin:6px 0;
  color:#333;
}

.success-box button{
  margin-top:15px;
  padding:10px 18px;
  background:#2ecc71;
  color:#fff;
  border:none;
  border-radius:6px;
  cursor:pointer;
  transition:0.3s;
}

.success-box button:hover{
  background:#27ae60;
}

/* ===== MY BOOKING ===== */
.my-booking{
  width:420px;
  background:#fff;
  margin:40px auto;
  padding:25px;
  display:none;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.my-booking h2{
  margin-bottom:15px;
  color:#111;
  border-bottom:1px solid #ddd;
  padding-bottom:8px;
}

.my-booking p{
  margin:8px 0;
  color:#333;
  font-size:15px;
}

.pending{
  color:#f39c12;
  font-weight:600;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Segoe UI", Arial, sans-serif;
}

body{
  min-height:100vh;
  background:
    radial-gradient(circle at top left, rgba(255,215,0,0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(0,0,0,0.08), transparent 40%),
    linear-gradient(135deg,#f4f6fb,#e9ecf3);
}

/* ===== NAVBAR ===== */
.navbar{
  background:#0f0f0f;
  padding:18px 50px;
  box-shadow:0 2px 10px rgba(0,0,0,0.25);
}

.navbar h2{
  color:gold;
  font-weight:600;
  letter-spacing:1px;
}

/* ===== BOOKING FORM CARD ===== */
.booking-container{
  width:420px;
  background:#ffffff;
  padding:32px;
  margin:60px auto;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
  position:relative;
}

/* subtle top accent line */
.booking-container::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#d4af37,#111);
  border-radius:14px 14px 0 0;
}

/* ===== TITLE ===== */
.booking-container h1{
  text-align:center;
  margin-bottom:26px;
  font-size:26px;
  font-weight:600;
  letter-spacing:0.5px;
  background:linear-gradient(135deg,#111,#d4af37);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ===== INPUTS ===== */
.booking-container input,
.booking-container select,
.booking-container textarea{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:1px solid #ccc;
  border-radius:7px;
  outline:none;
  transition:0.3s;
  font-size:14px;
}

.booking-container input:focus,
.booking-container select:focus,
.booking-container textarea:focus{
  border-color:#d4af37;
  box-shadow:0 0 0 2px rgba(212,175,55,0.15);
}

.booking-container textarea{
  resize:none;
  height:90px;
}

/* ===== BUTTON ===== */
.booking-container button{
  width:100%;
  padding:13px;
  background:linear-gradient(135deg,#111,#333);
  color:#fff;
  border:none;
  border-radius:7px;
  font-size:15px;
  cursor:pointer;
  transition:0.3s;
}

.booking-container button:hover{
  background:linear-gradient(135deg,#000,#222);
  transform:translateY(-1px);
}

/* ===== SUCCESS MESSAGE ===== */
.success-box{
  width:420px;
  background:#f4fff8;
  margin:35px auto;
  padding:28px;
  text-align:center;
  display:none;
  border-radius:14px;
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
  border-left:6px solid #2ecc71;
}

.success-box h2{
  color:#2ecc71;
  margin-bottom:12px;
}

.success-box p{
  margin:7px 0;
  color:#333;
  font-size:15px;
}

.success-box button{
  margin-top:18px;
  padding:10px 20px;
  background:#2ecc71;
  color:#fff;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

.success-box button:hover{
  background:#27ae60;
}

/* ===== MY BOOKING ===== */
.my-booking{
  width:420px;
  background:#fff;
  margin:45px auto;
  padding:26px;
  display:none;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
}

.my-booking h2{
  margin-bottom:15px;
  font-size:20px;
  color:#111;
  border-bottom:1px solid #ddd;
  padding-bottom:8px;
}

.my-booking p{
  margin:8px 0;
  color:#333;
  font-size:15px;
}

.pending{
  color:#f39c12;
  font-weight:600;
}
/* ==============================
   PREMIUM PACKAGES PAGE DESIGN
================================ */

/* Smooth background */
.packages-section{
    background:linear-gradient(180deg,#f2f2f2,#ffffff);
}

/* Glass effect card */
.package-card{
    background:rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    border-radius:20px;
    padding:35px 25px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
    transition:all 0.4s ease;
    border:1px solid #eee;
}

/* Hover luxury effect */
.package-card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 30px 60px rgba(0,0,0,0.25);
}

/* Title */
.package-card h2{
    font-size:22px;
    font-weight:700;
    letter-spacing:0.5px;
}

/* Price highlight */
.package-card h3{
    font-size:32px;
    margin:18px 0;
    background:linear-gradient(45deg,#d4af37,#ffdd88);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Features list */
.package-card ul li{
    font-size:15px;
    position:relative;
    padding-left:20px;
}

.package-card ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#d4af37;
    font-weight:bold;
}

/* Premium button */
.package-card .btn{
    font-weight:600;
    letter-spacing:0.5px;
    padding:12px 30px;
    background:linear-gradient(45deg,#000,#333);
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
}

.package-card .btn:hover{
    background:linear-gradient(45deg,#d4af37,#f5d76e);
    color:#000;
}

/* Popular card glow */
.popular{
    position:relative;
    border:none;
    box-shadow:0 25px 70px rgba(212,175,55,0.45);
}

/* Animated popular badge */
.tag{
    animation:pulse 1.8s infinite;
}

@keyframes pulse{
    0%{transform:scale(1)}
    50%{transform:scale(1.1)}
    100%{transform:scale(1)}
}

/* Header text animation */
.package-header h1{
    animation:fadeDown 1s ease;
}

.package-header p{
    animation:fadeUp 1.2s ease;
}

@keyframes fadeDown{
    from{opacity:0; transform:translateY(-20px)}
    to{opacity:1; transform:translateY(0)}
}

@keyframes fadeUp{
    from{opacity:0; transform:translateY(20px)}
    to{opacity:1; transform:translateY(0)}
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

body{
  background:#f4f4f4;
}

/* ===== SIDEBAR ===== */
.sidebar{
  position:fixed;
  left:0;
  top:0;
  width:220px;
  height:100vh;
  background:#111;
  padding:30px 15px;
}

.sidebar h2{
  color:gold;
  text-align:center;
  margin-bottom:30px;
}

.sidebar a{
  display:block;
  color:white;
  text-decoration:none;
  padding:12px;
  margin:8px 0;
  border-radius:6px;
  transition:0.3s;
  font-size:16px;
}

.sidebar a:hover{
  background:gold;
  color:black;
  padding-left:20px;
}

/* ===== MAIN AREA ===== */
.main{
  margin-left:220px;
  padding:20px;
}

/* ===== HERO ===== */
.hero{
  background:linear-gradient(to right,#000,#333);
  color:white;
  padding:60px;
  text-align:center;
  border-radius:10px;
}

.hero h1{
  color:gold;
  font-size:40px;
}

/* ===== EVENTS ===== */
.events{
  margin-top:40px;
}

.events h2{
  margin-bottom:20px;
}

.event-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}

.event{
  height:180px;
  background-size:cover;
  background-position:center;
  position:relative;
  border-radius:10px;
  cursor:pointer;
  overflow:hidden;
}

.event h3{
  position:absolute;
  bottom:0;
  width:100%;
  background:rgba(0,0,0,0.6);
  color:white;
  text-align:center;
  padding:10px;
}

/* ===== GALLERY ===== */
.gallery{
  display:none;
  margin-top:40px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:15px;
}

.photo{
  height:200px;
  background-size:cover;
  background-position:center;
  border-radius:10px;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .sidebar{
    position:relative;
    width:100%;
    height:auto;
  }
  .main{
    margin-left:0;
  }
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* ===== FULL BACKGROUND ===== */
body{
  background:url("bg.jpg") no-repeat center center fixed;
  background-size:cover;
}

/* ===== SIDEBAR ===== */
.sidebar{
  position:fixed;
  left:0;
  top:0;
  width:220px;
  height:100vh;
  background:rgba(0,0,0,0.85);
  padding:30px 15px;
}

.sidebar h2{
  color:gold;
  text-align:center;
  margin-bottom:30px;
}

.sidebar a{
  display:block;
  color:white;
  text-decoration:none;
  padding:12px;
  margin:8px 0;
  border-radius:6px;
  transition:0.3s;
  font-size:16px;
}

.sidebar a:hover{
  background:gold;
  color:black;
  padding-left:20px;
}

/* ===== MAIN ===== */
.main{
  margin-left:220px;
  padding:25px;
}

/* ===== HERO ===== */
.hero{
  background:rgba(0,0,0,0.65);
  color:white;
  padding:60px;
  text-align:center;
  border-radius:12px;
}

.hero h1{
  color:gold;
  font-size:42px;
}

/* ===== EVENTS ===== */
.events{
  margin-top:40px;
  background:rgba(255,255,255,0.88);
  padding:30px;
  border-radius:12px;
}

.events h2{
  margin-bottom:20px;
}

/* ===== EVENT GRID ===== */
.event-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}

.event{
  height:180px;
  background-size:cover;
  background-position:center;
  position:relative;
  border-radius:10px;
  cursor:pointer;
  overflow:hidden;
  transition:0.3s;
}

.event:hover{
  transform:scale(1.05);
}

.event h3{
  position:absolute;
  bottom:0;
  width:100%;
  background:rgba(0,0,0,0.6);
  color:white;
  text-align:center;
  padding:10px;
}

/* ===== GALLERY ===== */
.gallery{
  display:none;
  margin-top:40px;
  background:rgba(255,255,255,0.9);
  padding:30px;
  border-radius:12px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:15px;
}

.photo{
  height:200px;
  background-size:cover;
  background-position:center;
  border-radius:10px;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .sidebar{
    position:relative;
    width:100%;
    height:auto;
  }
  .main{
    margin-left:0;
  }
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

/* 🌸 FLOWER BACKGROUND */
body{
  background: url("flower-bg.jpg") no-repeat center center fixed;
  background-size: cover;
}

/* ===== HEADER ===== */
.header{
  background: rgba(0,0,0,0.7);
  color: white;
  padding:20px;
  text-align:center;
}

/* ===== BACK LINK ===== */
.back{
  text-align:center;
  margin:20px;
}
.back a{
  text-decoration:none;
  color:black;
  font-weight:bold;
  background:white;
  padding:10px 20px;
  border-radius:20px;
}

/* ===== GALLERY GRID ===== */
.gallery-liked{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  padding:30px;
  background: rgba(255,255,255,0.85);
  margin:20px;
  border-radius:15px;
}

/* ===== CARD ===== */
.card{
  background:white;
  padding:10px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 5px 10px rgba(0,0,0,0.3);
}

.card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:10px;
}

/* ===== REMOVE BUTTON ===== */
.remove{
  margin-top:10px;
  padding:8px 14px;
  border:none;
  background:red;
  color:white;
  border-radius:20px;
  cursor:pointer;
}

/* ===== PHOTO CARD (HOME) ===== */
.photo{
  height:200px;
  background-size:cover;
  background-position:center;
  border-radius:12px;
  position:relative;
}

.photo-actions{
  position:absolute;
  bottom:10px;
  right:10px;
}

.photo-actions button{
  border:none;
  padding:8px;
  margin:3px;
  border-radius:50%;
  cursor:pointer;
  font-size:16px;
}
/* GENERAL */
body{
  margin:0;
  font-family:Arial;
}

/* HOME PAGE */
.home-page{
  background: linear-gradient(to right, #f5f5f5, #e0e0e0);
}

/* SAVED PAGE */
.saved-page{
  background: linear-gradient(to right, #e6f7ff, #cceeff);
}

/* SIDEBAR */
.sidebar{
  width:200px;
  height:100vh;
  background:#111;
  position:fixed;
  padding:20px;
}
.sidebar a{
  display:block;
  color:white;
  text-decoration:none;
  margin:15px 0;
}

/* MAIN */
.main{
  margin-left:220px;
  padding:20px;
}

/* EVENTS */
.event-grid{
  display:flex;
  gap:20px;
}
.event{
  background:#333;
  color:white;
  padding:40px;
  cursor:pointer;
  text-align:center;
}

/* GALLERY */
.gallery-grid,.gallery-liked{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:15px;
}

.photo-box,.card{
  background:white;
  padding:10px;
  text-align:center;
}
img{
  width:100%;
}
.photo-actions button, .card button{
  width:100%;
  margin-top:5px;
  padding:5px;
}

.empty{
  text-align:center;
  font-size:18px;
  margin-top:20px;
}
/* GENERAL */
body{
  margin:0;
  font-family:Arial;
  background:#f5f5f5; /* Original background maintained */
}

/* SIDEBAR */
.sidebar{
  width:200px;
  height:100vh;
  background:#111;
  position:fixed;
  padding:20px;
}
.sidebar a{
  display:block;
  color:white;
  text-decoration:none;
  margin:15px 0;
}

/* MAIN */
.main{
  margin-left:220px;
  padding:20px;
}

/* HERO */
.hero{
  padding:50px;
  text-align:center;
}

/* EVENTS */
.event-grid{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}
.event{
  background:#333;
  color:white;
  padding:40px;
  cursor:pointer;
  text-align:center;
}

/* GALLERY */
.gallery-grid,.gallery-liked{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:15px;
}

.photo-box,.card{
  background:white;
  padding:10px;
  text-align:center;
}
img{
  width:100%;
}
.photo-actions button, .card button{
  width:100%;
  margin-top:5px;
  padding:5px;
}

.empty{
  text-align:center;
  font-size:18px;
  margin-top:20px;
}
/* GENERAL */
body{
  margin:0;
  font-family:Arial;
  background:#f5f5f5; /* Original background maintained */
}

/* SIDEBAR */
.sidebar{
  width:200px;
  height:100vh;
  background:#111;
  position:fixed;
  padding:20px;
}
.sidebar a{
  display:block;
  color:white;
  text-decoration:none;
  margin:15px 0;
}

/* MAIN */
.main{
  margin-left:220px;
  padding:20px;
}

/* HERO */
.hero{
  padding:50px;
  text-align:center;
}

/* EVENTS */
.event-grid{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}
.event{
  background:#333;
  color:white;
  padding:40px;
  cursor:pointer;
  text-align:center;
  background-size:cover;
  background-position:center;
  border-radius:10px;
}

/* GALLERY */
.gallery-grid,.gallery-liked{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:15px;
}

.photo-box,.card{
  background:white;
  padding:10px;
  text-align:center;
  border-radius:8px;
  box-shadow:0 2px 5px rgba(0,0,0,0.2);
}
img{
  width:100%;
  border-radius:5px;
}
.photo-actions button, .card button{
  width:100%;
  margin-top:5px;
  padding:5px;
  cursor:pointer;
}

.empty{
  text-align:center;
  font-size:18px;
  margin-top:20px;
}
/* GENERAL */
body{
  margin:0;
  font-family:Arial;
  background:#f5f5f5;
}

/* SIDEBAR */
.sidebar{
  width:200px;
  height:100vh;
  background:#111;
  position:fixed;
  padding:20px;
}
.sidebar a{
  display:block;
  color:white;
  text-decoration:none;
  margin:15px 0;
}

/* MAIN */
.main{
  margin-left:220px;
  padding:20px;
}

/* HERO */
.hero{
  padding:100px 20px;
  text-align:center;
  color:white;
  border-radius:10px;
  margin-bottom:30px;
}

/* EVENTS */
.event-grid{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content:center;
}
.event{
  width:220px; /* increased size */
  height:180px; /* increased size */
  background:#333;
  color:white;
  cursor:pointer;
  text-align:center;
  background-size:cover;
  background-position:center;
  border-radius:10px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  font-weight:bold;
  font-size:18px;
  padding-bottom:10px;
}

/* GALLERY */
.gallery-grid,.gallery-liked{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); /* bigger gallery */
  gap:15px;
}

.photo-box,.card{
  background:white;
  padding:10px;
  text-align:center;
  border-radius:8px;
  box-shadow:0 2px 5px rgba(0,0,0,0.2);
}
img{
  width:100%;
  border-radius:5px;
}
.photo-actions button, .card button{
  width:100%;
  margin-top:5px;
  padding:5px;
  cursor:pointer;
}

.empty{
  text-align:center;
  font-size:18px;
  margin-top:20px;
}
/* GENERAL */
body{
  margin:0;
  font-family:Arial, sans-serif;
  background:#f5f5f5;
}

/* SIDEBAR */
.sidebar{
  width:200px;
  height:100vh;
  background:#111;
  position:fixed;
  padding:20px;
}
.sidebar a{
  display:block;
  color:white;
  text-decoration:none;
  margin:15px 0;
}

/* MAIN CONTENT */
.main{
  margin-left:220px;
  padding:20px;
}

/* HERO */
.hero{
  padding:100px 20px;
  text-align:center;
  color:white;
  border-radius:10px;
  margin-bottom:30px;
}

/* EVENTS */
.event-grid{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:center;
}
.event{
  width:220px;
  height:180px;
  background:#333;
  color:white;
  text-align:center;
  cursor:pointer;
  background-size:cover;
  background-position:center;
  border-radius:10px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  font-weight:bold;
  font-size:18px;
  padding-bottom:10px;
}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
  gap:15px;
  margin-top:20px;
}
.photo-box{
  background:white;
  padding:10px;
  border-radius:8px;
  box-shadow:0 2px 5px rgba(0,0,0,0.2);
  text-align:center;
}
.photo-box img{
  width:100%;
  border-radius:5px;
}
.photo-actions button{
  width:100%;
  margin-top:5px;
  padding:5px;
  cursor:pointer;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background: url('flowers-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
}

/* SIDEBAR */
.sidebar{
  position: fixed;
  top:0;
  left:0;
  width: 200px;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.sidebar h2{
  text-align:center;
  color: #ff4d6d;
  margin-bottom:20px;
}

.sidebar a{
  display:block;
  padding:10px;
  color:#333;
  text-decoration:none;
  margin:5px 0;
  border-radius:5px;
  transition:0.3s;
}

.sidebar a:hover{
  background:#ff4d6d;
  color:white;
}

/* MAIN CONTENT */
.main{
  margin-left:220px;
  padding:20px;
}

/* HERO */
.hero{
  text-align:center;
  padding:50px 20px;
  background: rgba(255,255,255,0.7);
  border-radius:10px;
  margin-bottom:30px;
}

.hero h1{
  color:#ff4d6d;
  margin-bottom:10px;
}

.hero p{
  font-size:18px;
  color:#555;
}

/* EVENTS */
.events h2{
  margin-bottom:20px;
  color:#ff4d6d;
}

.event-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.event{
  height:150px;
  background-size: cover;
  background-position: center;
  border-radius:10px;
  cursor:pointer;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  color:white;
  font-weight:bold;
  padding-bottom:10px;
  transition: transform 0.3s;
}

.event:hover{
  transform: scale(1.05);
}

/* GALLERY */
.gallery{
  display:none;
  margin-top:30px;
}

.gallery h2{
  color:#ff4d6d;
  margin-bottom:15px;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.photo-box{
  position:relative;
}

.photo-box img{
  width:100%;
  border-radius:10px;
}

.photo-actions{
  display:flex;
  justify-content: space-around;
  margin-top:5px;
}

.photo-actions button{
  padding:5px 10px;
  border:none;
  border-radius:5px;
  background:#ff4d6d;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.photo-actions button:hover{
  background:#e6003c;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  /* Flower background */
  background: url('flowers-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
}

/* SIDEBAR */
.sidebar{
  position: fixed;
  top:0;
  left:0;
  width: 200px;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.sidebar h2{
  text-align:center;
  color: #ff4d6d;
  margin-bottom:20px;
}

.sidebar a{
  display:block;
  padding:10px;
  color:#333;
  text-decoration:none;
  margin:5px 0;
  border-radius:5px;
  transition:0.3s;
}

.sidebar a:hover{
  background:#ff4d6d;
  color:white;
}

/* MAIN CONTENT */
.main{
  margin-left:220px;
  padding:20px;
}

/* HERO */
.hero{
  text-align:center;
  padding:50px 20px;
  background: rgba(255,255,255,0.7);
  border-radius:10px;
  margin-bottom:30px;
}

.hero h1{
  color:#ff4d6d;
  margin-bottom:10px;
}

.hero p{
  font-size:18px;
  color:#555;
}

/* EVENTS */
.events h2{
  margin-bottom:20px;
  color:#ff4d6d;
}

.event-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.event{
  height:150px;
  background-size: cover;
  background-position: center;
  border-radius:10px;
  cursor:pointer;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  color:white;
  font-weight:bold;
  padding-bottom:10px;
  transition: transform 0.3s;
}

.event:hover{
  transform: scale(1.05);
}

/* GALLERY */
.gallery{
  display:none;
  margin-top:30px;
}

.gallery h2{
  color:#ff4d6d;
  margin-bottom:15px;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.photo-box{
  position:relative;
}

.photo-box img{
  width:100%;
  border-radius:10px;
}

.photo-actions{
  display:flex;
  justify-content: space-around;
  margin-top:5px;
}

.photo-actions button{
  padding:5px 10px;
  border:none;
  border-radius:5px;
  background:#ff4d6d;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.photo-actions button:hover{
  background:#e6003c;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  /* Flower background */
  background: url('flower-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
}

/* SIDEBAR */
.sidebar{
  position: fixed;
  top:0;
  left:0;
  width: 200px;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.sidebar h2{
  text-align:center;
  color: #ff4d6d;
  margin-bottom:20px;
}

.sidebar a{
  display:block;
  padding:10px;
  color:#333;
  text-decoration:none;
  margin:5px 0;
  border-radius:5px;
  transition:0.3s;
}

.sidebar a:hover{
  background:#ff4d6d;
  color:white;
}

/* MAIN CONTENT */
.main{
  margin-left:220px;
  padding:20px;
}

/* HERO */
.hero{
  text-align:center;
  padding:50px 20px;
  background: rgba(255,255,255,0.7);
  border-radius:10px;
  margin-bottom:30px;
}

.hero h1{
  color:#ff4d6d;
  margin-bottom:10px;
}

.hero p{
  font-size:18px;
  color:#555;
}

/* EVENTS */
.events h2{
  margin-bottom:20px;
  color:#ff4d6d;
}

.event-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.event{
  height:150px;
  background-size: cover;
  background-position: center;
  border-radius:10px;
  cursor:pointer;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  color:white;
  font-weight:bold;
  padding-bottom:10px;
  transition: transform 0.3s;
}

.event:hover{
  transform: scale(1.05);
}

/* GALLERY */
.gallery{
  display:none;
  margin-top:30px;
}

.gallery h2{
  color:#ff4d6d;
  margin-bottom:15px;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.photo-box{
  position:relative;
}

.photo-box img{
  width:100%;
  border-radius:10px;
}

.photo-actions{
  display:flex;
  justify-content: space-around;
  margin-top:5px;
}

.photo-actions button{
  padding:5px 10px;
  border:none;
  border-radius:5px;
  background:#ff4d6d;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.photo-actions button:hover{
  background:#e6003c;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  /* Flower background */
  background: url('flower1-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
}

/* SIDEBAR */
.sidebar{
  position: fixed;
  top:0;
  left:0;
  width: 200px;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.sidebar h2{
  text-align:center;
  color: #ff4d6d;
  margin-bottom:20px;
}

.sidebar a{
  display:block;
  padding:10px;
  color:#333;
  text-decoration:none;
  margin:5px 0;
  border-radius:5px;
  transition:0.3s;
}

.sidebar a:hover{
  background:#ff4d6d;
  color:white;
}

/* MAIN CONTENT */
.main{
  margin-left:220px;
  padding:20px;
}

/* HERO */
.hero{
  text-align:center;
  padding:50px 20px;
  background: rgba(255,255,255,0.7);
  border-radius:10px;
  margin-bottom:30px;
}

.hero h1{
  color:#ff4d6d;
  margin-bottom:10px;
}

.hero p{
  font-size:18px;
  color:#555;
}

/* EVENTS */
.events h2{
  margin-bottom:20px;
  color:#ff4d6d;
}

.event-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.event{
  height:150px;
  background-size: cover;
  background-position: center;
  border-radius:10px;
  cursor:pointer;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  color:white;
  font-weight:bold;
  padding-bottom:10px;
  transition: transform 0.3s;
}

.event:hover{
  transform: scale(1.05);
}

/* GALLERY */
.gallery{
  display:none;
  margin-top:30px;
}

.gallery h2{
  color:#ff4d6d;
  margin-bottom:15px;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.photo-box{
  position:relative;
}

.photo-box img{
  width:100%;
  border-radius:10px;
}

.photo-actions{
  display:flex;
  justify-content: space-around;
  margin-top:5px;
}

.photo-actions button{
  padding:5px 10px;
  border:none;
  border-radius:5px;
  background:#ff4d6d;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.photo-actions button:hover{
  background:#e6003c;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Dark Body */
body{
  background-color: #121212;
  color: #ffffff;
}

/* SIDEBAR */
.sidebar{
  position: fixed;
  top:0;
  left:0;
  width: 220px;
  height: 100%;
  background: #1e1e1e;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.7);
}

.sidebar h2{
  text-align:center;
  color:#ff4081;
  margin-bottom:20px;
}

.sidebar a{
  display:block;
  padding:10px;
  color:#ffffff;
  text-decoration:none;
  margin:5px 0;
  border-radius:5px;
  transition:0.3s;
}

.sidebar a:hover{
  background:#ff4081;
  color:white;
}

/* MAIN CONTENT */
.main{
  margin-left:240px;
  padding:20px;
}

/* HERO */
.hero{
  text-align:center;
  padding:50px 20px;
  background: #1e1e1e;
  border-radius:10px;
  margin-bottom:30px;
}

.hero h1{
  color:#ff4081;
  margin-bottom:10px;
}

.hero p{
  font-size:18px;
  color:#ddd;
}

/* EVENTS */
.events h2{
  margin-bottom:20px;
  color:#ff4081;
}

.event-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.event{
  height:150px;
  background-size: cover;
  background-position: center;
  border-radius:10px;
  cursor:pointer;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  color:white;
  font-weight:bold;
  padding-bottom:10px;
  transition: transform 0.3s;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.event:hover{
  transform: scale(1.05);
}

/* GALLERY */
.gallery{
  display:none;
  margin-top:30px;
}

.gallery h2{
  color:#ff4081;
  margin-bottom:15px;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.photo-box{
  position:relative;
}

.photo-box img{
  width:100%;
  border-radius:10px;
}

.photo-actions{
  display:flex;
  justify-content: space-around;
  margin-top:5px;
}

.photo-actions button{
  padding:5px 10px;
  border:none;
  border-radius:5px;
  background:#ff4081;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.photo-actions button:hover{
  background:#e6007e;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background-color: #121212;
  color: #fff;
}

/* SIDEBAR */
.sidebar{
  position: fixed;
  top:0;
  left:0;
  width: 220px;
  height: 100%;
  background: #1e1e1e;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.7);
}

.sidebar h2{
  text-align:center;
  color:#ff4081;
  margin-bottom:20px;
}

.sidebar a{
  display:block;
  padding:10px;
  color:#fff;
  text-decoration:none;
  margin:5px 0;
  border-radius:5px;
  transition:0.3s;
}

.sidebar a:hover{
  background:#ff4081;
  color:white;
}

/* MAIN CONTENT */
.main{
  margin-left:240px;
  padding:20px;
}

/* HERO */
.hero{
  text-align:center;
  padding:50px 20px;
  background: #1e1e1e;
  border-radius:10px;
  margin-bottom:30px;
}

.hero h1{
  color:#ff4081;
  margin-bottom:10px;
}

.hero p{
  font-size:18px;
  color:#ddd;
}

/* EVENTS */
.events h2{
  margin-bottom:20px;
  color:#ff4081;
}

.event-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.event{
  height:150px;
  background-size: cover;
  background-position: center;
  border-radius:10px;
  cursor:pointer;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  color:white;
  font-weight:bold;
  padding-bottom:10px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.event:hover{
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,64,129,0.7);
}

/* GALLERY */
.gallery{
  display:none;
  margin-top:30px;
}

.gallery h2{
  color:#ff4081;
  margin-bottom:15px;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.photo-box{
  position:relative;
}

.photo-box img{
  width:100%;
  border-radius:10px;
}

.photo-actions{
  display:flex;
  justify-content: space-around;
  margin-top:5px;
}

.photo-actions button{
  padding:5px 10px;
  border:none;
  border-radius:5px;
  background:#ff4081;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.photo-actions button:hover{
  background:#e6007e;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background-color: #121212;
  color: #fff;
}

/* SIDEBAR */
.sidebar{
  position: fixed;
  top:0;
  left:0;
  width: 220px;
  height: 100%;
  background: #1e1e1e;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.7);
}

.sidebar h2{
  text-align:center;
  color:#ff4081;
  margin-bottom:20px;
}

.sidebar a{
  display:block;
  padding:10px;
  color:#fff;
  text-decoration:none;
  margin:5px 0;
  border-radius:5px;
  transition:0.3s;
}

.sidebar a:hover{
  background:#ff4081;
  color:white;
}

/* MAIN CONTENT */
.main{
  margin-left:240px;
  padding:20px;
}

/* HERO */
.hero{
  text-align:center;
  padding:80px 20px;
  background: url('flower1-bg.jpg') no-repeat center center;
  background-size: cover;
  border-radius:10px;
  margin-bottom:30px;
  color:white;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero h1{
  color:#ffffff;
  font-size:48px;
  margin-bottom:10px;
}

.hero p{
  font-size:20px;
  color:#ddd;
}

/* EVENTS */
.events h2{
  margin-bottom:20px;
  color:#ff4081;
}

.event-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.event{
  height:150px;
  background-size: cover;
  background-position: center;
  border-radius:10px;
  cursor:pointer;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  color:white;
  font-weight:bold;
  padding-bottom:10px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.event:hover{
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,64,129,0.7);
}

/* GALLERY */
.gallery{
  display:none;
  margin-top:30px;
}

.gallery h2{
  color:#ff4081;
  margin-bottom:15px;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.photo-box{
  position:relative;
}

.photo-box img{
  width:100%;
  border-radius:10px;
}

.photo-actions{
  display:flex;
  justify-content: space-around;
  margin-top:5px;
}

.photo-actions button{
  padding:5px 10px;
  border:none;
  border-radius:5px;
  background:#ff4081;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.photo-actions button:hover{
  background:#e6007e;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background-color: #121212;
  color: #fff;
}

/* SIDEBAR */
.sidebar{
  position: fixed;
  top:0;
  left:0;
  width: 220px;
  height: 100%;
  background: #1e1e1e;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.7);
}

.sidebar h2{
  text-align:center;
  color:#ff4081;
  margin-bottom:20px;
}

.sidebar a{
  display:block;
  padding:10px;
  color:#fff;
  text-decoration:none;
  margin:5px 0;
  border-radius:5px;
  transition:0.3s;
}

.sidebar a:hover{
  background:#ff4081;
  color:white;
}

/* MAIN CONTENT */
.main{
  margin-left:240px;
  padding:20px;
}

/* HERO */
.hero{
  text-align:center;
  padding:80px 20px;
  background: url('st.jpeg') no-repeat center center;
  background-size: cover;
  border-radius:10px;
  margin-bottom:30px;
  color:white;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero h1{
  color:#ffffff;
  font-size:48px;
  margin-bottom:10px;
}

.hero p{
  font-size:20px;
  color:#ddd;
}

/* EVENTS */
.events h2{
  margin-bottom:20px;
  color:#ff4081;
}

.event-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.event{
  height:150px;
  background-size: cover;
  background-position: center;
  border-radius:10px;
  cursor:pointer;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  color:white;
  font-weight:bold;
  padding-bottom:10px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.event:hover{
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,64,129,0.7);
}

/* GALLERY */
.gallery{
  display:none;
  margin-top:30px;
}

.gallery h2{
  color:#ff4081;
  margin-bottom:15px;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.photo-box{
  position:relative;
}

.photo-box img{
  width:100%;
  border-radius:10px;
}

.photo-actions{
  display:flex;
  justify-content: space-around;
  margin-top:5px;
}

.photo-actions button{
  padding:5px 10px;
  border:none;
  border-radius:5px;
  background:#ff4081;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.photo-actions button:hover{
  background:#e6007e;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background-color: #121212;
  color: #fff;
}

/* SIDEBAR */
.sidebar{
  position: fixed;
  top:0;
  left:0;
  width: 220px;
  height: 100%;
  background: #1e1e1e;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.7);
}

.sidebar h2{
  text-align:center;
  color:#ff4081;
  margin-bottom:20px;
}

.sidebar a{
  display:block;
  padding:10px;
  color:#fff;
  text-decoration:none;
  margin:5px 0;
  border-radius:5px;
  transition:0.3s;
}

.sidebar a:hover{
  background:#ff4081;
  color:white;
}

/* MAIN CONTENT */
.main{
  margin-left:240px;
  padding:20px;
}

/* GALLERY HERO */
.gallery-hero{
  text-align:center;
  padding:80px 20px;
  background: url('st1.jpeg') no-repeat center center;
  background-size: cover;
  border-radius:10px;
  margin-bottom:30px;
  color:white;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.gallery-hero h1{
  font-size:48px;
  margin-bottom:10px;
}

.gallery-hero p{
  font-size:20px;
  color:#ddd;
}

/* GALLERY */
.gallery h2{
  color:#ff4081;
  margin-bottom:15px;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.photo-box{
  position:relative;
}

.photo-box img{
  width:100%;
  border-radius:10px;
}

.photo-actions{
  display:flex;
  justify-content: space-around;
  margin-top:5px;
}

.photo-actions button{
  padding:5px 10px;
  border:none;
  border-radius:5px;
  background:#ff4081;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.photo-actions button:hover{
  background:#e6007e;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background-color: #121212;
  color: #fff;
}

/* SIDEBAR */
.sidebar{
  position: fixed;
  top:0;
  left:0;
  width: 220px;
  height: 100%;
  background: #1e1e1e;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.7);
}

.sidebar h2{
  text-align:center;
  color:#ff4081;
  margin-bottom:20px;
}

.sidebar a{
  display:block;
  padding:10px;
  color:#fff;
  text-decoration:none;
  margin:5px 0;
  border-radius:5px;
  transition:0.3s;
}

.sidebar a:hover{
  background:#ff4081;
  color:white;
}

/* MAIN CONTENT */
.main{
  margin-left:240px;
  padding:20px;
}

/* GALLERY HERO */
.gallery-hero{
  text-align:center;
  padding:60px 20px;
  color:white;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

/* GALLERY SECTION WITH FLOWER BACKGROUND */
.gallery-section{
  background: url('st1.jpeg') no-repeat center center;
  background-size: cover;
  padding:30px;
  border-radius:10px;
  margin-top:20px;
}

.gallery-section h2{
  color:#ff4081;
  margin-bottom:15px;
}

/* GALLERY GRID */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.photo-box{
  position:relative;
}

.photo-box img{
  width:100%;
  border-radius:10px;
}

.photo-actions{
  display:flex;
  justify-content: space-around;
  margin-top:5px;
}

.photo-actions button{
  padding:5px 10px;
  border:none;
  border-radius:5px;
  background:#ff4081;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.photo-actions button:hover{
  background:#e6007e;
}
body{
    background: url('st2.jpeg') no-repeat center center fixed;
    background-size: cover;
    color:#fff;
    font-family: Arial, Helvetica, sans-serif;
}

/* NAVBAR */
.navbar{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding:15px 40px;
    background: rgba(0,0,0,0.7);
    position: fixed;
    width: 100%;
    top:0;
    z-index:100;
}
.navbar h2{
    color:#ff4081;
}
.navbar a{
    color:#fff;
    text-decoration:none;
    margin-left:20px;
    transition:0.3s;
}
.navbar a:hover{
    color:#ff80aa;
}

/* HEADER */
.header{
    text-align:center;
    padding:120px 20px 40px 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.header h1{
    font-size:48px;
    color:#fff;
}
.header p{
    font-size:20px;
    color:#ddd;
}

/* CONTACT SECTION */
.contact-section{
    max-width: 900px;
    margin: auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    background: rgba(255,255,255,0.8); /* light for readability */
    padding:30px;
    border-radius:12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* CONTACT INFO */
.contact-info{
    flex:1 1 300px;
    margin-right:20px;
}
.contact-info h2{
    color:#ff4081;
    margin-bottom:15px;
}
.contact-info p{
    margin:5px 0;
    color: #000; /* Black color for address/details */
    font-weight: bold;
}

/* CONTACT FORM */
.contact-form{
    flex:1 1 300px;
}
.contact-form h2{
    color:#ff4081;
    margin-bottom:15px;
}
.contact-form form input,
.contact-form form textarea{
    width:100%;
    padding:10px;
    margin-bottom:15px;
    border-radius:8px;
    border:none;
    font-size:16px;
}
.contact-form form button{
    padding:10px 20px;
    border:none;
    border-radius:8px;
    background:#ff4081;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}
.contact-form form button:hover{
    background:#e6007e;
}

/* SUCCESS MESSAGE */
.message-success{
    max-width:420px;
    margin:30px auto;
    padding:25px;
    background: rgba(255,255,255,0.9);
    border-left:6px solid #2ecc71;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    text-align:center;
    display:none;
}
.message-success h2{
    color:#2ecc71;
    margin-bottom:10px;
}
.message-success p{
    color:#333;
    font-size:15px;
}

/* FOOTER */
.footer{
    text-align:center;
    padding:20px;
    margin-top:30px;
    background: rgba(0,0,0,0.7);
    color:#fff;
    border-radius:10px;
}
body{
    background: url('st2.jpeg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
    color:#fff;
}

/* NAVBAR */
.navbar{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding:15px 40px;
    background: rgba(0,0,0,0.7);
    position: fixed;
    width: 100%;
    top:0;
    z-index:100;
}
.navbar h2{
    color:#ff4081;
}
.navbar a{
    color:#fff;
    text-decoration:none;
    margin-left:20px;
    transition:0.3s;
}
.navbar a:hover{
    color:#ff80aa;
}

/* HEADER */
.header{
    text-align:center;
    padding:120px 20px 40px 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.header h1{
    font-size:48px;
    color:#fff;
}
.header p{
    font-size:20px;
    color:#ddd;
}

/* CONTACT SECTION */
.contact-section{
    max-width: 900px;
    margin: auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    background: rgba(255,255,255,0.8); /* light overlay for readability */
    padding:30px;
    border-radius:12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* CONTACT INFO */
.contact-info{
    flex:1 1 300px;
    margin-right:20px;
}
.contact-info h2{
    color:#ff4081;
    margin-bottom:15px;
}
.contact-info p{
    margin:5px 0;
    color:#000; /* black font for all address/details */
    font-weight: bold;
}

/* CONTACT FORM */
.contact-form{
    flex:1 1 300px;
}
.contact-form h2{
    color:#ff4081;
    margin-bottom:15px;
}
.contact-form form input,
.contact-form form textarea{
    width:100%;
    padding:10px;
    margin-bottom:15px;
    border-radius:8px;
    border:none;
    font-size:16px;
}
.contact-form form button{
    padding:10px 20px;
    border:none;
    border-radius:8px;
    background:#ff4081;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}
.contact-form form button:hover{
    background:#e6007e;
}

/* SUCCESS MESSAGE */
.message-success{
    max-width:420px;
    margin:30px auto;
    padding:25px;
    background: rgba(255,255,255,0.9);
    border-left:6px solid #2ecc71;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    text-align:center;
    display:none;
}
.message-success h2{
    color:#2ecc71;
    margin-bottom:10px;
}
.message-success p{
    color:#333;
    font-size:15px;
}

/* FOOTER */
.footer{
    text-align:center;
    padding:20px;
    margin-top:30px;
    background: rgba(0,0,0,0.7);
    color:#fff;
    border-radius:10px;
}
/* BODY + BACKGROUND */
body{
    background: url('st2.jpeg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
    color:#fff;
    margin:0;
}

/* NAVBAR */
.navbar{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding:15px 40px;
    background: rgba(0,0,0,0.7);
    position: fixed;
    width: 100%;
    top:0;
    z-index:100;
}
.navbar h2{
    color:#ff4081;
}
.navbar a{
    color:#fff;
    text-decoration:none;
    margin-left:20px;
    transition:0.3s;
}
.navbar a:hover{
    color:#ff80aa;
}

/* HEADER */
.header{
    text-align:center;
    padding:120px 20px 40px 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.header h1{
    font-size:48px;
    color:#fff;
}
.header p{
    font-size:20px;
    color:#ddd;
}

/* CONTACT SECTION */
.contact-section{
    max-width: 900px;
    margin: auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    background: rgba(255,255,255,0.8); /* light overlay for readability */
    padding:30px;
    border-radius:12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* CONTACT INFO */
.contact-info{
    flex:1 1 300px;
    margin-right:20px;
}
.contact-info h2{
    color:#ff4081;
    margin-bottom:15px;
}
.contact-info p{
    margin:5px 0;
    color:#000; /* BLACK FONT for address/details */
    font-weight: bold;
}

/* CONTACT FORM */
.contact-form{
    flex:1 1 300px;
}
.contact-form h2{
    color:#ff4081;
    margin-bottom:15px;
}
.contact-form form input,
.contact-form form textarea{
    width:100%;
    padding:10px;
    margin-bottom:15px;
    border-radius:8px;
    border:none;
    font-size:16px;
}
.contact-form form button{
    padding:10px 20px;
    border:none;
    border-radius:8px;
    background:#ff4081;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}
.contact-form form button:hover{
    background:#e6007e;
}

/* SUCCESS MESSAGE */
.message-success{
    max-width:420px;
    margin:30px auto;
    padding:25px;
    background: rgba(255,255,255,0.9);
    border-left:6px solid #2ecc71;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    text-align:center;
    display:none;
}
.message-success h2{
    color:#2ecc71;
    margin-bottom:10px;
}
.message-success p{
    color:#333;
    font-size:15px;
}

/* FOOTER */
.footer{
    text-align:center;
    padding:20px;
    margin-top:30px;
    background: rgba(0,0,0,0.7);
    color:#fff;
    border-radius:10px;
}
/* BODY + BACKGROUND */
body{
    background: url('st2.jpeg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
    margin:0;
    color:#fff;
}

/* NAVBAR */
.navbar{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding:15px 40px;
    background: rgba(0,0,0,0.7);
    position: fixed;
    width: 100%;
    top:0;
    z-index:100;
}
.navbar h2{
    color:#ff4081;
}
.navbar a{
    color:#fff;
    text-decoration:none;
    margin-left:20px;
    transition:0.3s;
}
.navbar a:hover{
    color:#ff80aa;
}

/* BOOKING CONTAINER */
.booking-container{
    max-width:600px;
    margin:150px auto 50px auto;
    background: rgba(255,255,255,0.85);
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    color:#000; /* form text black for readability */
}

.booking-container h1{
    text-align:center;
    margin-bottom:20px;
    color:#ff4081;
}

.booking-container input,
.booking-container select,
.booking-container textarea{
    width:100%;
    padding:10px;
    margin-bottom:15px;
    border-radius:8px;
    border:1px solid #ccc;
    font-size:16px;
}

.booking-container button{
    width:100%;
    padding:10px;
    border:none;
    border-radius:8px;
    background:#ff4081;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.booking-container button:hover{
    background:#e6007e;
}

/* SUCCESS BOX */
.success-box{
    max-width:600px;
    margin:30px auto;
    padding:20px;
    background: rgba(255,255,255,0.9);
    border-left:6px solid #2ecc71;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    display:none;
    text-align:center;
}

.success-box h2{
    color:#2ecc71;
    margin-bottom:10px;
}

.success-box p{
    color:#000;
    font-size:15px;
}

/* MY BOOKING */
.my-booking{
    max-width:600px;
    margin:30px auto;
    padding:20px;
    background: rgba(255,255,255,0.85);
    border-radius:12px;
    display:none;
}

.my-booking h2{
    color:#ff4081;
    margin-bottom:15px;
}

.my-booking p{
    color:#000;
    margin:5px 0;
}

.pending{
    color:#ff4081;
    font-weight:bold;
}
/* BODY + BACKGROUND */
body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background: url('st2.jpeg') no-repeat center center fixed;
    background-size: cover;
    color:#fff;
}

/* SIDEBAR */
.sidebar{
    position: fixed;
    top:0;
    left:0;
    width:200px;
    height:100%;
    background: rgba(0,0,0,0.7);
    padding:20px;
}
.sidebar h2{
    color:#ff4081;
    margin-bottom:20px;
}
.sidebar a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin:10px 0;
    transition:0.3s;
}
.sidebar a:hover{
    color:#ff80aa;
}

/* MAIN CONTENT */
.main{
    margin-left:220px;
    padding:50px 30px;
}

/* HERO */
.gallery-hero{
    text-align:center;
    margin-bottom:40px;
}
.gallery-hero h1{
    font-size:48px;
    color:#ff4081;
}
.gallery-hero p{
    font-size:20px;
    color:#fff;
}

/* EVENT SELECTION */
.event-selection{
    max-width:400px;
    margin: 0 auto 30px auto;
    text-align:center;
}
.event-selection select{
    width:100%;
    padding:10px;
    border-radius:8px;
    border:none;
    font-size:16px;
}

/* GALLERY GRID */
.gallery-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap:15px;
}
.photo-box{
    position:relative;
    overflow:hidden;
    border-radius:12px;
}
.photo-box img{
    width:100%;
    cursor:pointer;
    border-radius:12px;
    transition:0.3s;
}
.photo-box img:hover{
    transform: scale(1.05);
}
.photo-actions{
    position:absolute;
    bottom:10px;
    left:10px;
}
.photo-actions button{
    margin-right:5px;
    border:none;
    padding:5px 8px;
    border-radius:6px;
    background:rgba(255,255,255,0.8);
    cursor:pointer;
    font-weight:bold;
    transition:0.3s;
}
.photo-actions button:hover{
    background:rgba(255,255,255,1);
}

/* PHOTO MODAL */
.photo-modal{
    position: fixed;/* BODY + BACKGROUND */
body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background: url('st2.jpeg') no-repeat center center fixed;
    background-size: cover;
    color:#fff;
}

/* NAVBAR */
.navbar{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding:15px 40px;
    background: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    top:0;
    z-index:100;
}
.navbar h2{
    color:#ff4081;
    margin:0;
}
.navbar .nav-links a{
    color:#fff;
    text-decoration:none;
    margin-left:25px;
    font-weight:bold;
    transition:0.3s;
}
.navbar .nav-links a:hover{
    color:#ff80aa;
}

/* BOOKING CONTAINER */
.booking-container{
    max-width:600px;
    margin:120px auto 50px auto;
    background: rgba(255,255,255,0.9);
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    color:#000;
}

.booking-container h1{
    color:#ff4081;
    text-align:center;
    margin-bottom:20px;
}

/* FORM ELEMENTS */
.booking-container input,
.booking-container select,
.booking-container textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border-radius:8px;
    border:1px solid #ccc;
    font-size:16px;
}

.booking-container button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    background:#ff4081;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}
.booking-container button:hover{
    background:#e6007e;
}

/* SUCCESS BOX */
.success-box{
    display:none;
    max-width:500px;
    margin:50px auto;
    background:#f0fff6;
    padding:20px;
    border-left:6px solid #2ecc71;
    border-radius:12px;
    text-align:center;
}
.success-box h2{
    color:#2ecc71;
    margin-bottom:10px;
}

/* MY BOOKING */
.my-booking{
    display:none;
    max-width:500px;
    margin:50px auto;
    background: rgba(255,255,255,0.9);
    padding:20px;
    border-radius:12px;
    color:#000;
}
.my-booking h2{
    color:#ff4081;
    margin-bottom:10px;
}
.my-booking p{
    margin:5px 0;
}
.pending{
    color:#ff4081;
    font-weight:bold;
}
/* BODY + BACKGROUND */
body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background: url('st2.jpeg') no-repeat center center fixed;
    background-size: cover;
    color:#fff;
}

/* NAVBAR */
.navbar{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding:15px 30px;
    background: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    top:0;
    z-index:100;
}
.navbar h2{
    color:#ff4081;
    margin:0;
    font-size:24px;
    text-align:center;
}

.nav-left a,
.nav-right a{
    color:#fff;
    text-decoration:none;
    margin:0 12px;
    font-weight:bold;
    transition:0.3s;
}
.nav-left a:hover,
.nav-right a:hover{
    color:#ff80aa;
}

/* BOOKING CONTAINER */
.booking-container{
    max-width:600px;
    margin:120px auto 50px auto;
    background: rgba(255,255,255,0.95);
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    color:#000;
}

.booking-container h1{
    color:#ff4081;
    text-align:center;
    margin-bottom:20px;
}

/* FORM ELEMENTS */
.booking-container input,
.booking-container select,
.booking-container textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border-radius:8px;
    border:1px solid #ccc;
    font-size:16px;
}

.booking-container button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    background:#ff4081;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}
.booking-container button:hover{
    background:#e6007e;
}

/* SUCCESS BOX */
.success-box{
    display:none;
    max-width:500px;
    margin:50px auto;
    background:#f0fff6;
    padding:20px;
    border-left:6px solid #2ecc71;
    border-radius:12px;
    text-align:center;
}
.success-box h2{
    color:#2ecc71;
    margin-bottom:10px;
}

/* MY BOOKING */
.my-booking{
    display:none;
    max-width:500px;
    margin:50px auto;
    background: rgba(255,255,255,0.9);
    padding:20px;
    border-radius:12px;
    color:#000;
}
.my-booking h2{
    color:#ff4081;
    margin-bottom:10px;
}
.my-booking p{
    margin:5px 0;
}
.pending{
    color:#ff4081;
    font-weight:bold;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background:#f4f4f4;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:60px;
  background:black;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1000;
}

.site-title{
  color:gold;
  font-size:22px;
}

/* SIDEBAR */
.sidebar{
  position:fixed;
  top:60px;
  left:0;
  width:220px;
  height:100%;
  background:#111;
  padding-top:20px;
}

.sidebar a{
  display:block;
  padding:14px 20px;
  color:white;
  text-decoration:none;
  font-size:16px;
}

.sidebar a:hover,
.sidebar a.active{
  background:gold;
  color:black;
}

/* MAIN */
.main{
  margin-left:220px;
  padding-top:80px;
  padding:30px;
}

/* HEADER */
.header{
  text-align:center;
  margin-bottom:30px;
}

.header h1{
  font-size:32px;
}

.header p{
  color:#555;
}

/* CONTACT SECTION */
.contact-section{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}

/* CONTACT INFO */
.contact-info{
  background:white;
  padding:25px;
  width:320px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.contact-info h2{
  margin-bottom:15px;
}

/* CONTACT FORM */
.contact-form{
  background:white;
  padding:25px;
  width:320px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:10px;
  margin-bottom:12px;
}

.contact-form button{
  width:100%;
  padding:10px;
  background:black;
  color:white;
  border:none;
  cursor:pointer;
}

.contact-form button:hover{
  background:gold;
  color:black;
}

/* SUCCESS MESSAGE */
.message-success{
  max-width:420px;
  margin:30px auto;
  padding:25px;
  background:#f0fff6;
  border-left:6px solid #2ecc71;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  text-align:center;
  display:none;
}

/* FOOTER */
.footer{
  text-align:center;
  margin-top:40px;
  color:#555;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background:#f4f4f4;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:60px;
  background:black;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:1000;
}

.center-title{
  color:gold;
  font-size:22px;
}

/* SIDEBAR */
.sidebar{
  position:fixed;
  top:60px;
  left:0;
  width:220px;
  height:100%;
  background:#111;
}

.sidebar a{
  display:block;
  padding:14px 20px;
  color:white;
  text-decoration:none;
}

.sidebar a:hover{
  background:gold;
  color:black;
}

/* MAIN */
.main{
  margin-left:220px;
  padding-top:80px;
  padding:30px;
}

/* HEADER */
.header{
  text-align:center;
  margin-bottom:30px;
}

/* CONTACT */
.contact-section{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}

.contact-info,
.contact-form{
  background:white;
  padding:25px;
  width:320px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:10px;
  margin-bottom:12px;
}

.contact-form button{
  width:100%;
  padding:10px;
  background:black;
  color:white;
  border:none;
}

.contact-form button:hover{
  background:gold;
  color:black;
}

/* SUCCESS */
.message-success{
  max-width:420px;
  margin:30px auto;
  padding:25px;
  background:#f0fff6;
  border-left:6px solid #2ecc71;
  border-radius:12px;
  display:none;
  text-align:center;
}

/* FOOTER */
.footer{
  text-align:center;
  margin-top:40px;
  color:#555;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background:#f4f4f4;
}

/* NAVBAR */
.navbar{
  background:black;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 30px;
}

.navbar a{
  color:white;
  text-decoration:none;
  margin:0 10px;
}

.navbar a:hover{
  color:gold;
}

.nav-title{
  color:gold;
  font-size:22px;
}

/* HEADER */
.header{
  text-align:center;
  margin:40px 0;
}

/* CONTACT SECTION */
.contact-section{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.contact-info,
.contact-form{
  background:white;
  width:320px;
  padding:25px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:10px;
  margin-bottom:12px;
}

.contact-form button{
  width:100%;
  padding:10px;
  background:black;
  color:white;
  border:none;
}

.contact-form button:hover{
  background:gold;
  color:black;
}

/* SUCCESS */
.message-success{
  max-width:420px;
  margin:30px auto;
  padding:25px;
  background:#f0fff6;
  border-left:6px solid #2ecc71;
  border-radius:12px;
  display:none;
  text-align:center;
}

/* FOOTER */
.footer{
  text-align:center;
  margin:40px 0;
  color:#555;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background:#f4f4f4;
}

/* NAVBAR */
.navbar{
  height:60px;
  background:black;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 30px;
}

.nav-title{
  color:gold;
  font-size:22px;
}

.nav-links a{
  color:white;
  text-decoration:none;
  margin:0 10px;
}

.nav-links a:hover{
  color:gold;
}

/* BOOKING */
.booking-container{
  width:320px;
  margin:40px auto;
  background:white;
  padding:25px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.booking-container h1{
  text-align:center;
  margin-bottom:20px;
}

.booking-container input,
.booking-container select,
.booking-container textarea{
  width:100%;
  padding:10px;
  margin-bottom:12px;
}

.booking-container button{
  width:100%;
  padding:10px;
  background:black;
  color:white;
  border:none;
}

.booking-container button:hover{
  background:gold;
  color:black;
}

/* SUCCESS */
.success-box,
.my-booking{
  display:none;
  width:320px;
  margin:30px auto;
  background:white;
  padding:20px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.pending{
  color:orange;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
  color:#000;
}

/* SIDEBAR */
.sidebar{
  width:220px;
  height:100vh;
  background:#f2f2f2;
  position:fixed;
  padding:20px;
}
.sidebar a{
  display:block;
  text-decoration:none;
  margin:15px 0;
  font-weight:bold;
}

/* MAIN */
.main{
  margin-left:240px;
  padding:20px;
}

/* HERO */
.hero{
  background:#ddd;
  padding:60px;
  text-align:center;
}

/* EVENTS */
.event-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}
.event{
  height:150px;
  background-size:cover;
  display:flex;
  align-items:end;
  padding:10px;
  font-weight:bold;
}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:15px;
}
.photo-box img{
  width:100%;
  border-radius:8px;
}

/* NAVBAR */
.navbar{
  background:#eee;
  padding:15px;
}
.navbar a{
  margin:0 10px;
  text-decoration:none;
  font-weight:bold;
}

/* PACKAGES */
.packages-section{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  padding:30px;
}
.package-card{
  border:1px solid #ccc;
  padding:20px;
}
.btn{
  display:inline-block;
  margin-top:10px;
  padding:10px 15px;
  background:#000;
  color:#fff;
  text-decoration:none;
}

/* FOOTER */
.footer{
  text-align:center;
  padding:15px;
  background:#eee;
}
/* GOOGLE FONT (GAME STYLE) */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Orbitron', sans-serif;
}

/* BODY GAME BACKGROUND */
body{
  background: radial-gradient(circle at top, #1b1f3b, #050510);
  color:#ffffff;
  min-height:100vh;
}

/* NAVBAR */
.navbar{
  background: linear-gradient(90deg,#0f2027,#203a43,#2c5364);
  padding:15px 30px;
  display:flex;
  align-items:center;
  gap:25px;
  box-shadow:0 0 15px #00f2ff;
}

.navbar h2{
  margin-right:auto;
  color:#00f2ff;
  text-shadow:0 0 10px #00f2ff;
}

.navbar a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.navbar a:hover{
  color:#00f2ff;
  text-shadow:0 0 8px #00f2ff;
}

/* HEADER */
.package-header{
  text-align:center;
  padding:60px 20px;
}

.package-header h1{
  font-size:36px;
  color:#00f2ff;
  text-shadow:0 0 15px #00f2ff;
}

.package-header p{
  margin-top:10px;
  color:#cfd9ff;
}

/* PACKAGES */
.packages-section{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  padding:40px;
}

/* PACKAGE CARD (GAME CARD STYLE) */
.package-card{
  background: linear-gradient(180deg,#11162a,#0a0f20);
  border:1px solid #00f2ff;
  border-radius:12px;
  padding:25px;
  box-shadow:0 0 20px rgba(0,242,255,0.3);
  transition:0.4s;
}

.package-card:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 0 35px rgba(0,242,255,0.7);
}

.package-card h2{
  color:#00f2ff;
  margin-bottom:10px;
}

.package-card h3{
  color:#ffffff;
  margin-bottom:15px;
}

.package-card ul{
  list-style:none;
  margin-bottom:20px;
}

.package-card ul li{
  margin:8px 0;
  color:#d6e4ff;
  font-size:13px;
}

/* BUTTON */
.btn{
  display:inline-block;
  padding:12px 18px;
  background:#00f2ff;
  color:#000;
  text-decoration:none;
  border-radius:6px;
  font-size:13px;
  transition:0.3s;
}

.btn:hover{
  background:#fff;
  box-shadow:0 0 15px #00f2ff;
}

/* FOOTER */
.footer{
  text-align:center;
  padding:20px;
  background:#070b1a;
  color:#aaa;
  font-size:12px;
  margin-top:40px;
}
/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== BODY ===== */
body{
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    color:#333;
}

/* ===== NAVBAR ===== */
.navbar{
    background: linear-gradient(to right, #000000, #2c2c2c);
    padding:15px 40px;
    display:flex;
    align-items:center;
    gap:25px;
}

.navbar h2{
    color:gold;
    margin-right:auto;
    letter-spacing:1px;
}

.navbar a{
    color:white;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

.navbar a:hover{
    color:gold;
}

/* ===== HEADER ===== */
.package-header{
    text-align:center;
    padding:70px 20px 40px;
}

.package-header h1{
    font-size:40px;
    color:#222;
    margin-bottom:10px;
}

.package-header p{
    font-size:18px;
    color:#555;
}

/* ===== PACKAGES SECTION ===== */
.packages-section{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:40px;
    flex-wrap:wrap;
}

/* ===== PACKAGE CARD ===== */
.package-card{
    background:white;
    width:300px;
    padding:30px 25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    text-align:center;
    transition:0.4s;
}

.package-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* ===== CARD TEXT ===== */
.package-card h2{
    font-size:24px;
    color:#000;
    margin-bottom:10px;
}

.package-card h3{
    font-size:28px;
    color:#c59d5f;
    margin-bottom:20px;
}

.package-card ul{
    list-style:none;
    margin-bottom:25px;
}

.package-card ul li{
    font-size:15px;
    padding:8px 0;
    color:#444;
    border-bottom:1px dashed #ddd;
}

.package-card ul li:last-child{
    border-bottom:none;
}

/* ===== BUTTON ===== */
.btn{
    display:inline-block;
    padding:12px 30px;
    background:linear-gradient(to right, #c59d5f, #a67c3c);
    color:white;
    text-decoration:none;
    border-radius:30px;
    font-size:15px;
    transition:0.3s;
}

.btn:hover{
    background:linear-gradient(to right, #a67c3c, #c59d5f);
    transform:scale(1.05);
}

/* ===== FOOTER ===== */
.footer{
    background:#111;
    color:#aaa;
    text-align:center;
    padding:15px;
    margin-top:50px;
    font-size:14px;
}
/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* BODY */
body{
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    color:#333;
}

/* NAVBAR */
.navbar{
    background: linear-gradient(to right, #000, #2c2c2c);
    padding:15px 40px;
    display:flex;
    align-items:center;
    gap:25px;
}

.navbar h2{
    color:gold;
    margin-right:auto;
    letter-spacing:1px;
}

.navbar a{
    color:white;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

.navbar a:hover{
    color:gold;
}

/* HEADER */
.package-header{
    text-align:center;
    padding:70px 20px 40px;
}

.package-header h1{
    font-size:40px;
    margin-bottom:10px;
}

.package-header p{
    font-size:18px;
    color:#555;
}

/* PACKAGES */
.packages-section{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:40px;
    flex-wrap:wrap;
}

/* CARD */
.package-card{
    background:white;
    width:300px;
    padding:30px 25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    text-align:center;
    transition:0.4s;
}

.package-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.package-card h2{
    font-size:23px;
    margin-bottom:8px;
}

.package-card h3{
    font-size:26px;
    color:#c59d5f;
    margin-bottom:18px;
}

.package-card ul{
    list-style:none;
    margin-bottom:22px;
}

.package-card ul li{
    padding:7px 0;
    font-size:14px;
    color:#444;
    border-bottom:1px dashed #ddd;
}

.package-card ul li:last-child{
    border-bottom:none;
}

/* BUTTON */
.btn{
    display:inline-block;
    padding:12px 30px;
    background:linear-gradient(to right, #c59d5f, #a67c3c);
    color:white;
    text-decoration:none;
    border-radius:30px;
    font-size:15px;
    transition:0.3s;
}

.btn:hover{
    transform:scale(1.05);
}

/* FOOTER */
.footer{
    background:#111;
    color:#aaa;
    text-align:center;
    padding:15px;
    margin-top:50px;
    font-size:14px;
}
/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* BODY */
body{
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    color:#333;
}

/* NAVBAR */
.navbar{
    background: linear-gradient(to right, #000, #2c2c2c);
    padding:15px 40px;
    display:flex;
    align-items:center;
    gap:25px;
}

.navbar h2{
    color:gold;
    margin-right:auto;
    letter-spacing:1px;
}

.navbar a{
    color:white;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

.navbar a:hover{
    color:gold;
}

/* HEADER */
.package-header{
    text-align:center;
    padding:70px 20px 40px;
}

.package-header h1{
    font-size:40px;
    color:#222;
    margin-bottom:10px;
}

.package-header p{
    font-size:18px;
    color:#555;
}

/* PACKAGES */
.packages-section{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:40px;
    flex-wrap:wrap;
}

/* CARD */
.package-card{
    background:white;
    width:300px;
    padding:30px 25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    text-align:center;
    transition:0.4s;
}

.package-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* TEXT */
.package-card h2{
    font-size:24px;
    color:#000;
    margin-bottom:10px;
}

.package-card h3{
    font-size:28px;
    color:#c59d5f;
    margin-bottom:20px;
}

.package-card ul{
    list-style:none;
    margin-bottom:25px;
}

.package-card ul li{
    font-size:15px;
    padding:8px 0;
    color:#444;
    border-bottom:1px dashed #ddd;
}

.package-card ul li:last-child{
    border-bottom:none;
}

/* BUTTON */
.btn{
    display:inline-block;
    padding:12px 30px;
    background:linear-gradient(to right, #c59d5f, #a67c3c);
    color:white;
    text-decoration:none;
    border-radius:30px;
    font-size:15px;
    transition:0.3s;
}

.btn:hover{
    transform:scale(1.05);
}

/* FOOTER */
.footer{
    background:#111;
    color:#aaa;
    text-align:center;
    padding:15px;
    margin-top:50px;
    font-size:14px;
}
/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* BODY */
body{
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    color:#000; /* MAIN TEXT BLACK */
}

/* NAVBAR */
.navbar{
    background: linear-gradient(to right, #000, #2c2c2c);
    padding:15px 40px;
    display:flex;
    align-items:center;
    gap:25px;
}

.navbar h2{
    color:gold;
    margin-right:auto;
    letter-spacing:1px;
}

.navbar a{
    color:#ffffff;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

.navbar a:hover{
    color:gold;
}

/* HEADER */
.package-header{
    text-align:center;
    padding:70px 20px 40px;
}

.package-header h1{
    font-size:40px;
    color:#000; /* BLACK */
    margin-bottom:10px;
}

.package-header p{
    font-size:18px;
    color:#111; /* DARK BLACK */
}

/* PACKAGES */
.packages-section{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:40px;
    flex-wrap:wrap;
}

/* CARD */
.package-card{
    background:#ffffff;
    width:300px;
    padding:30px 25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    text-align:center;
    transition:0.4s;
}

.package-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* TEXT */
.package-card h2{
    font-size:24px;
    color:#000; /* BLACK */
    margin-bottom:10px;
}

.package-card h3{
    font-size:28px;
    color:#000; /* PRICE ALSO BLACK */
    margin-bottom:20px;
    font-weight:600;
}

.package-card ul{
    list-style:none;
    margin-bottom:25px;
}

.package-card ul li{
    font-size:15px;
    padding:8px 0;
    color:#111; /* DARK BLACK FOR READABILITY */
    border-bottom:1px dashed #ccc;
}

.package-card ul li:last-child{
    border-bottom:none;
}

/* BUTTON */
.btn{
    display:inline-block;
    padding:12px 30px;
    background:#000; /* SIMPLE BLACK BUTTON */
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-size:15px;
    transition:0.3s;
}

.btn:hover{
    background:#333;
    transform:scale(1.05);
}

/* FOOTER */
.footer{
    background:#111;
    color:#ddd;
    text-align:center;
    padding:15px;
    margin-top:50px;
    font-size:14px;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Segoe UI", sans-serif;
}

/* BODY */
body{
  background:#f5f6fa;
  color:#000;
}

/* TOP BAR */
.topbar{
  background:#000;
  color:#fff;
  padding:15px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-size:22px;
  font-weight:600;
  color:gold;
}

.menu a{
  color:white;
  text-decoration:none;
  margin-left:25px;
  font-size:15px;
}

.menu a:hover,
.menu a.active{
  color:gold;
}

/* PAGE TITLE */
.page-title{
  text-align:center;
  padding:60px 20px 30px;
}

.page-title h1{
  font-size:38px;
  margin-bottom:8px;
}

.page-title p{
  color:#333;
  font-size:17px;
}

/* PACKAGES GRID */
.package-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:30px;
  padding:40px;
}

/* CARD */
.card{
  background:#fff;
  padding:30px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  text-align:center;
  position:relative;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);
}

/* POPULAR TAG */
.tag{
  position:absolute;
  top:-12px;
  right:15px;
  background:gold;
  color:#000;
  padding:5px 12px;
  font-size:12px;
  border-radius:20px;
}

/* TEXT */
.card h2{
  font-size:22px;
  margin-bottom:10px;
}

.price{
  font-size:26px;
  font-weight:600;
  margin-bottom:18px;
}

.card ul{
  list-style:none;
  margin-bottom:22px;
}

.card ul li{
  padding:7px 0;
  border-bottom:1px dashed #ccc;
  font-size:14px;
}

.card ul li:last-child{
  border-bottom:none;
}

/* BUTTON */
.btn{
  display:inline-block;
  padding:12px 28px;
  background:#000;
  color:white;
  text-decoration:none;
  border-radius:30px;
  font-size:14px;
}

.btn:hover{
  background:#333;
}

/* FOOTER */
.footer{
  background:#000;
  color:#ccc;
  text-align:center;
  padding:15px;
  margin-top:40px;
}

    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.9);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:1000;
}
.photo-modal img{
    max-width:90%;
    max-height:90%;
    border-radius:12px;
}
.photo-modal .close-btn{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Segoe UI", sans-serif;
}

/* BODY */
body{
  background:#f4f5f7;
  color:#000;
}

/* NAVBAR */
.navbar{
  background:#000;
  color:#fff;
  padding:18px 50px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand{
  font-size:22px;
  font-weight:600;
  color:gold;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  margin-left:30px;
  font-size:15px;
}

.nav-links a:hover,
.nav-links a.active{
  color:gold;
}

/* HERO */
.hero{
  text-align:center;
  padding:70px 20px 40px;
  background:linear-gradient(to right, #ffffff, #f0f0f0);
}

.hero h1{
  font-size:42px;
  margin-bottom:10px;
}

.hero p{
  font-size:17px;
  color:#333;
}

/* PACKAGES */
.packages{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
  gap:35px;
  padding:50px;
}

/* CARD */
.card{
  background:#fff;
  border-radius:18px;
  padding:35px 30px;
  text-align:center;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  position:relative;
  transition:0.4s;
}

.card:hover{
  transform:translateY(-10px);
}

/* HIGHLIGHT */
.highlight{
  border:2px solid gold;
}

.badge{
  position:absolute;
  top:-14px;
  right:20px;
  background:gold;
  color:#000;
  padding:6px 14px;
  font-size:12px;
  border-radius:20px;
}

/* TEXT */
.card h2{
  font-size:22px;
  margin-bottom:10px;
}

.price{
  font-size:28px;
  font-weight:600;
  margin-bottom:20px;
}

.card ul{
  list-style:none;
  margin-bottom:25px;
}

.card ul li{
  padding:8px 0;
  font-size:14px;
  border-bottom:1px dashed #ccc;
}

.card ul li:last-child{
  border-bottom:none;
}

/* BUTTON */
.btn{
  display:inline-block;
  padding:13px 34px;
  background:#000;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-size:14px;
}

.btn:hover{
  background:#333;
}

/* FOOTER */
.footer{
  background:#000;
  color:#ccc;
  text-align:center;
  padding:18px;
  margin-top:40px;
  font-size:14px;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background:#f5f5f5;
}

/* NAVBAR */
.navbar{
  background:black;
  padding:15px 30px;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
}

.nav-title{
  color:gold;
}

/* SIDEBAR */
.sidebar{
  position:fixed;
  top:60px;
  left:0;
  width:200px;
  height:100%;
  background:#111;
  padding-top:20px;
}

.sidebar a{
  display:block;
  padding:12px 20px;
  color:white;
  text-decoration:none;
}

.sidebar a:hover,
.sidebar a.active{
  background:gold;
  color:black;
}

/* MAIN */
.main{
  margin-left:200px;
  margin-top:60px;
}

/* HERO IMAGE */
.hero-contact{
  height:100vh;
  background:url("st3.jpg") no-repeat center center;
  background-size:cover;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-contact::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
}

.hero-text{
  position:relative;
  color:white;
  text-align:center;
}

.hero-text h1{
  font-size:50px;
  margin-bottom:10px;
}

.hero-text p{
  font-size:18px;
}

/* CONTACT SECTION */
.contact-section{
  display:flex;
  gap:30px;
  padding:50px;
  background:white;
}

.contact-info,
.contact-form{
  flex:1;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:10px;
  margin:10px 0;
}

.contact-form button{
  background:black;
  color:white;
  padding:10px 20px;
  border:none;
  cursor:pointer;
}

.contact-form button:hover{
  background:gold;
  color:black;
}

/* SUCCESS MESSAGE */
.message-success{
  display:none;
  text-align:center;
  padding:50px;
}

/* FOOTER */
.footer{
  text-align:center;
  padding:20px;
  background:#111;
  color:white;
}
