@import url('fonts.googleapis.com');


html, body{
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}


/* NAVIGATION BAR */

.header_container {
    background-color: #dcdcdc;
    padding: 5px 50px; 
    position: sticky;
    top: 0;
    display: flex;
    z-index: 2;
}

.header_container img {
    width: 50px;
}

.header_container img:hover {
    opacity: 0.7;
    transition: 0.5s ease;
}

.header_container ul {
        list-style: none;
        display: flex;
        margin-left: auto;
        padding: 5px;
        text-decoration: none;
}

.header_container ul li{
        padding: 10px 15px;
        margin-top: 5px;
}

.header_container ul li a{
        padding: 10px 15px;
        text-decoration: none;
        color: #2e002b;
}

.header_container ul li a:hover{
        color: #4c4c4c;
}


.header_container  i {
        width: 40px;;
}

/* MAIN STYLING  */

/* ============================
   GLOBAL
============================ */

/* ============================
   HERO BANNER
============================ */
/* ============================
   MAIN BANNER TEXT
============================ */
.main_banner {
    height: 100vh;
    background: url('../images/products/banner.jpg') center center / cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main_banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.banner-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #f1f1f1;
}

.banner-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.banner-btn:hover {
    background: #000;
    color: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.4rem;
    }
    .banner-content p {
        font-size: 1.1rem;
    }
}



/* ============================
   ABOUT TITLE
============================ */
.abt {
    text-align: center;
    padding: 60px 0 20px;
}

.abt h1 {
    font-size: 3rem;
    letter-spacing: 2px;
}

/* ============================
   ABOUT SECTION
============================ */
.about-me {
    padding: 80px 10%;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.7;
    font-size: 1.1rem;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    background: #000;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}

.about-images {
    flex: 1;
    position: relative;
}

.top-image {
    width: 100%;
    border-radius: 10px;
}

.bottom-image {
    width: 70%;
    border-radius: 10px;
    position: absolute;
    bottom: -40px;
    right: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ============================
   GALLERY SECTION (CENTERED)
============================ */
.gal_hom_container {
    width: 100%;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;     /* Centers the sliders horizontally */
    gap: 40px;               /* Space between the two sliders */
}

.slider {
    display: flex;
    justify-content: center; /* Centers images inside each slider */
    gap: 20px;
    width: 100%;
    max-width: 1100px;       /* Prevents stretching on large screens */
    overflow-x: auto;
    padding: 10px;
}

.slider::-webkit-scrollbar {
    height: 8px;
}

.slider::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

.slider img {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;          /* Prevents images from shrinking */
}

/* ============================
   NOTE SECTION
============================ */
.note {
    text-align: center;
    padding: 80px 10%;
}

.note h2 {
    font-size: 2rem;
    line-height: 1.6;
}

.note button {
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    background: #000;
    border-radius: 6px;
}

.note button a {
    color: #fff;
    text-decoration: none;
}

/* ============================
   SERVICES
============================ */
.photo-services {
    padding: 100px 10%;
    text-align: center;
}

.photo-services h1 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 32%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card h2 {
    margin-top: 20px;
    font-size: 1.6rem;
}

.card p {
    margin-top: 10px;
    line-height: 1.6;
}

/* ============================
   FADE-IN ANIMATION
============================ */
.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 900px) {
    .about-container,
    .cards {
        flex-direction: column;
        text-align: center;
    }

    .bottom-image {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

    .card {
        width: 100%;
    }
}











/*FOOTER STYLING*/
/* Footer Styles */
.site-footer {
  background-color: #222;
  color: #ddd;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container div {
  flex: 1 1 220px;
}

.footer-about h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-contact a {
  color: #ddd;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
}
.footer_bottom{
    padding: 50px 50px 20px 50px;
}

.social_container h3{
    text-align: center;
    color: white;
}

.social_links{
    margin: 10px 0;
    display: flex;
    justify-content: center;
}

.social_links a {
    color: white;
    margin: 0 10px;
    padding: 10px;
    border: 1px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.social_links i {
    color: white;
    font-size: 20px;
}

.social_links i:hover {
    color: #f07539;
}

.copyright_text{
    display: block;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 14px;
    margin-top: 20px;
}


/* SIDEBAR STYLING */
.sidebar{
    flex-basis: 300px;
    box-shadow: 4px 1px 5px silver;
}


/* OTHER PAGES STYLING */
.main_body{
    flex:1;
    margin: 50px;
}

.main_body p{
    text-align: justify;
}

.main_body .contact_paragraph {
    font-size: 18px;
    text-align: center;
}

.contact_container{
    text-align: center;
}

.title{
    box-shadow: 0px 1px 10px silver;        
    text-align: center;
    padding: 20px;
    z-index: 5;
    background-color: white;
}



/* SERVICE PAGES */

/* Banner Styles */
.banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 20px 40px;
  border-radius: 8px;
}

.banner-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}


.photo-sessions {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.photo-sessions h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #440047;
  text-align: center;
}

.session-cards {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.session-card {
  background-color: #fff;
  /* background-image: url("../images/products/pt-session-1.png"); */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 320px; 
  flex: 1 1 380px;  /* allows flexible growth */
  padding: 30px 20px;
  text-align: left;
  transition: transform 0.3s ease;
  color: #222;
}

.session-card img {
  /* background-image: url("../images/products/pt-session-1.png"); */
  background-repeat: no-repeat;
  background-size: cover;
}

.session-card:hover {
  transform: translateY(-5px);
}

.session-card h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
}

.session-card p {
  color: #440047;
}

.session-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.session-card ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.price {
  font-size: 1.1rem;
  color: #222;
}



/* banners section */
.appointments {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.appointments h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #440047;
}

.appointment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.appointment-card {
  background-color: #9f9f9f;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  width: 320px;
  padding: 30px 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
  background-size: cover;
  background-repeat: no-repeat;
}

.appointment-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 15px;
}

.card-header h2 {
  font-size: 1.2rem;
  color: #444;
}

.card-header span {
  font-size: 0.95rem;
  color: #440047;
}


.price {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #440047;
}

.book-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #555;
}

/* Contact Banner */
.contact-banner {
  background-color: #3b3b3b;
  color: #fff;
  padding: 60px 20px;
  text-align: center; 
}

.banner-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

.contact-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  color: #222;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #ddd;
}


/* PORTFOLIO SECTION */
#portfolio {
  padding: 40px 0;
}
#portfolio h2 {
  text-align: center;
  font-size: 2.4rem;
  margin: 0 0 28px;
  position: relative;
}
#portfolio h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: #0073e6;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ---------------------------
   Filter buttons
--------------------------- */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px auto 28px;
  padding: 0 12px;
}
.filter-buttons button {
  appearance: none;
  border: none;
  background: #e6a900;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.filter-buttons button:hover { background: #005bb5; transform: translateY(-1px); }
.filter-buttons button.active { background: #ff6a00; }

/* ---------------------------
   Slider (carousel)
--------------------------- */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  margin: 0 auto 36px;
  max-width: 100%;
}
.slides {
  display: flex;
  will-change: transform;
  transition: transform 0.6s ease-in-out;
}
.slides img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  flex-shrink: 0;
  user-select: none;
}
.slider .prev, .slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider .prev { left: 14px; }
.slider .next { right: 14px; }
.slider .prev:hover, .slider .next:hover {
  background: rgba(0,0,0,0.65);
  transform: translateY(-50%) scale(1.05);
}

/* Slider dots (optional) */
.slider-dots {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
}
.slider-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.65);
  cursor: pointer; transition: transform 0.2s ease, background 0.2s ease;
}
.slider-dots button.active { background: #fff; transform: scale(1.2); }

/* ---------------------------
   Portfolio grid
--------------------------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 24px;
}
.portfolio-item {
  position: relative;
}
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
  background: #fff;
}
.image-wrapper img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.image-wrapper:hover img { transform: scale(1.06); }

/* Overlay (title + description) */
.overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.image-wrapper:hover .overlay { transform: translateY(0); }
.overlay h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
}
.overlay p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.95;
}

/* ---------------------------
   Show More section
--------------------------- */
.more-images .portfolio-grid {
  margin-top: 20px;
}


.more-images {
  display: none; /* hidden by default */
  margin-top: 20px;
}
.more-images.show {
  display: block; /* revealed when JS adds .show */
}


#showMoreBtn {
  display: block;
  margin: 8px auto 0;
  padding: 10px 24px;
  border: none;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
#showMoreBtn:hover { background: #000; transform: translateY(-1px); }

/* ---------------------------
   Utility states for filtering
--------------------------- */
.portfolio-item.hide {
  pointer-events: none;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.portfolio-item.show {
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.25s ease, transform 0.25s ease;
}



/* CONTACT SECTION */

/* Banner */
.contact-banner {
  background-image: url('..images/products/contact.jpg');
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner-overlay {
  color: #fff;
  text-align: center;
  padding: 50px;
  border-radius: 10px;
}


.banner-overlay p {
  font-size: 1.2rem;
  padding-top: 15px;
  margin-bottom: 30px;
}

.book-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  color: #222;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #ddd;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form input {
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #555;
}



/* ABOUT_US SECTION LINK */

.about-us {
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background-color: #222;
  color: #fff;
}

.cta-btn.primary:hover {
  background-color: #555;
}

.cta-btn.secondary {
  background-color: #fff;
  color: #222;
  border: 2px solid #222;
}

.cta-btn.secondary:hover {
  background-color: #222;
  color: #fff;
}

.about-image {
  flex: 1 1 476px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* BOOKING SECTION */
#booking h2{
  text-align: center;
  padding: 20px;
}
.booking-form {
  max-width: 600px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-form label {
  font-weight: 600;
}

input, textarea, select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

button {
  padding: 12px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #555;
}




/* RESPONSIVE MEDIA */
@media screen and (min-width: 480px) {
  body {
    background-color:;
  }
}

/* ---------------------------
   Responsive tweaks
--------------------------- */
@media (max-width: 1024px) {
  .slides img { height: 440px; }
}
@media (max-width: 768px) {
  .slides img { height: 360px; }
  .overlay { padding: 16px; }
  .slider .prev, .slider .next { width: 38px; height: 38px; }
}
@media (max-width: 480px) {
  .slides img { height: 300px; }
  #portfolio h2 { font-size: 2rem; }
  .filter-buttons button { padding: 9px 18px; font-size: 0.9rem; }
  .image-wrapper img { height: 280px; }
}s