/* GLOBAL FIX — prevents accidental horizontal scrolling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

:root {
  --color-bg: #f8f8f4;
  --color-primary: #ED72C4;
  --color-dark: #7D7C9D;
  --color-text: #4D3D50;
  --color-text-light: #6f6f6f;
  --color-footer-border: rgba(255, 255, 255, 0.2);
}

/* ================================
   NAVBAR (OVER HERO)
================================ */
.navbar {
  width: 100%;
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent; /* transparent to show hero */
  position: absolute; /* overlay hero */
  top: 0;
  left: 0;
  z-index: 100;
  color: #fff; /* navbar text white */
}

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #ED72C4; /* pink hover */
}

/* HAMBURGER */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #fff;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  position: relative;
  transition: 0.3s ease;
}

.nav-toggle-label span::before {
  content: "";
  position: absolute;
  top: -8px;
}
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  top: 8px;
}

/* Hamburger open animation */
.nav-toggle:checked + .nav-toggle-label span {
  background: transparent;
}
.nav-toggle:checked + .nav-toggle-label span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle:checked + .nav-toggle-label span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-toggle:checked ~ .nav-links {
  display: flex;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* hide by default */
    flex-direction: column;
    gap: 15px;
    background: rgba(0,0,0,0.8); /* semi-transparent bg on mobile */
    position: absolute;
    right: 20px;
    top: 70px;
    padding: 20px 30px;
    border-radius: 12px;
    width: auto;
    max-width: 80%;
    transition: all 0.3s ease; /* smooth open/close */
    z-index: 1000;
  }

  .nav-toggle-label {
    display: flex;
    cursor: pointer;
  }

  .nav-links a {
    font-size: 16px;
  }

  /* ONLY show nav-links when checkbox is checked */
  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }
}

/* ================================
   HERO SECTION
================================ */
.hero-section {
  display: flex;
  height: 70vh;
  width: 100%;
  overflow: hidden;
  position: relative; /* for center overlay */
  z-index: 1; /* below navbar */
}

.hero-left,
.hero-right {
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.hero-left img,
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-center {
  position: absolute;
  top: 50%;
  left: 49.64%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.hero-btn {
  padding: 10px 25px;
  border: 1px solid #fff;
  background: rgba(255,255,255,0.2);
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
}

.hero-btn:hover {
  background: #ED72C4; /* pink hover */
  border-color: #ED72C4;
  color: #fff;
}

.hero-star {
  font-size: 32px;
  color: #ED72C4;
  font-weight: bold;
}

/* RESPONSIVE HERO */
@media (max-width: 1024px) {
  .hero-section {
    height: 70vh;
  }
  .hero-star {
    font-size: 28px;
  }
  .hero-btn {
    font-size: 14px;
    padding: 8px 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    height: auto;
  }
  .hero-left,
  .hero-right {
    height: 40vh;
  }
  .hero-center {
    position: relative;
    top: initial;
    left: initial;
    transform: none;
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  .hero-btn {
    font-size: 12px;
    padding: 6px 15px;
  }
  .hero-star {
    font-size: 24px;
  }
}

/* ================================
   ABOUT SECTION
================================ */
.about-section {
  display: flex;
  justify-content: center;
  margin-top: -80px; /* overlap hero */
  padding: 0 20px 50px 20px;
  z-index: 5;
  position: relative;
}

.about-box {
  display: flex;
  padding: 20px;
  max-width: 800px;
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  background: #fff;
}

.about-content {
  display: flex;
  gap: 20px;
  width: 100%;
}

.about-left {
  flex: 1;
}

.about-left img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-right h2 {
  margin-bottom: 15px;
}

.about-right p {
  margin-bottom: 20px;
}

.about-right a {
  color: #ED72C4;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-right a:hover {
  text-decoration: underline;
  color: #ff1493;
}

/* RESPONSIVE ABOUT */
@media (max-width: 768px) {
  .about-box {
    flex-direction: column;
  }
  .about-left,
  .about-right {
    width: 100%;
  }
  .about-left img {
    margin-bottom: 20px;
  }
}

/* ================================
   OUR PROJECTS SECTION
================================ */
.our-projects-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
  background: #f9f9f9;
  flex-wrap: wrap;
}

.our-projects-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 400px;
}

.our-projects-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.our-projects-left p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

.our-projects-right {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.our-project-box {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
}

.our-project-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.our-project-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* RESPONSIVE OUR PROJECTS */
@media (max-width: 1024px) {
  .our-projects-right {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .our-projects-section {
    flex-direction: column;
    align-items: center;
  }
  .our-projects-left,
  .our-projects-right {
    max-width: 100%;
    width: 100%;
  }
  .our-projects-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  .our-project-box {
    flex: 1 1 45%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .our-project-box {
    flex: 1 1 100%;
    height: auto;
  }
}

/* ================================
   PHOTO GALLERY SECTION
================================ */
.photo-gallery-section {
  padding: 80px 20px;
  background: #fdfdfd;
  text-align: center;
}

.photo-gallery-section h2 {
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #4D3D50;
  letter-spacing: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover .overlay {
  background: rgba(255, 105, 180, 0.25);
  cursor: pointer;

}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 105, 180, 0);
  transition: background 0.4s ease;

}

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

.gallery-item:hover .overlay {
  background: rgba(255, 105, 180, 0.25);
  cursor: pointer;
}

.gallery-item:hover .overlay-text {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.overlay-text p {
  font-size: 14px;
  line-height: 1.4;
}


.overlay-text h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.overlay-text {
  color: #000;
  max-width: 85%;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: 220px;
  }
}

/* ================================
   FOOTER SECTION
================================ */
.site-footer {
  background-color: #7D7C9D;
  color: #fff;
  padding: 60px 20px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-container h3 {
  margin-bottom: 15px;
  color: #fff;
}

.footer-container p,
.footer-container li,
.footer-container a {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover {
  color: #ED72C4;
  text-decoration: underline;
}

.footer-social {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  color: #ccc;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

/* RESET */
* { margin:0; padding:0; box-sizing:border-box; }
html,body { width:100%; overflow-x:hidden; font-family:Arial,sans-serif; }

/* ================= REVEAL ================= */
.reveal { opacity:0; transform:translateY(40px); transition:0.8s ease; }
.reveal.active { opacity:1; transform:translateY(0); }

/* ================= NAVBAR ================= */
.navbar {
  width:100%; padding:18px 30px;
  display:flex; justify-content:space-between; align-items:center;
  position:absolute; top:0; left:0; z-index:100;
  color:#fff;
  animation:navDrop .8s ease forwards;
}
@keyframes navDrop {
  from{transform:translateY(-100%);opacity:0;}
  to{transform:translateY(0);opacity:1;}
}
.nav-logo{font-size:22px;font-weight:700;}
.nav-links{display:flex;gap:25px;}
.nav-links a{color:#fff;text-decoration:none;}
.nav-links a:hover{color:#ED72C4;}

/* ================= HERO ================= */
.hero-section{display:flex;height:70vh;position:relative;}
.hero-left,.hero-right{flex:1;overflow:hidden;}
.hero-left img,.hero-right img{width:100%;height:100%;object-fit:cover;}

.hero-left img{animation:slideLeft 1s ease forwards;}
.hero-right img{animation:slideRight 1s ease forwards;}

@keyframes slideLeft{from{transform:translateX(-80px);opacity:0;}to{transform:none;opacity:1;}}
@keyframes slideRight{from{transform:translateX(80px);opacity:0;}to{transform:none;opacity:1;}}

.hero-center{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  display:flex;gap:20px;
  animation:fadeScale 1.2s ease forwards;
}
@keyframes fadeScale{
  from{transform:translate(-50%,-50%) scale(.8);opacity:0;}
  to{transform:translate(-50%,-50%) scale(1);opacity:1;}
}

.hero-btn{
  padding:10px 25px;border:1px solid #fff;
  background:rgba(255,255,255,.2);
  border-radius:25px;color:#fff;cursor:pointer;
  transition:.3s;
}
.hero-btn:hover{background:#ED72C4;border-color:#ED72C4;}

.hero-star{
  font-size:32px;color:#ED72C4;font-weight:bold;
  animation:starPulse 1.6s infinite;
}
@keyframes starPulse{
  0%{transform:scale(1);opacity:.6;}
  50%{transform:scale(1.3);opacity:1;}
  100%{transform:scale(1);opacity:.6;}
}

/* ================= ABOUT ================= */
.about-section{display:flex;justify-content:center;margin-top:-80px;padding:0 20px 50px;}
.about-box{
  background:#fff;padding:20px;border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,.1);
  transition:.4s;
}
.about-box:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* ================= PROJECTS ================= */
.our-projects-section{display:flex;gap:40px;padding:80px 20px;background:#f9f9f9;flex-wrap:wrap;}
.our-projects-right{display:flex;gap:20px;flex:1;}
.our-project-box{
  background:#fff;border-radius:12px;overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,.1);
  transition:.4s;flex:1;
}
.our-project-box:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 15px 30px rgba(0,0,0,.18);
}
.our-project-box img{width:100%;height:300px;object-fit:cover;}

/* ================= GALLERY ================= */
.photo-gallery-section{padding:80px 20px;text-align:center;}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:25px;}
.gallery-item{
  position:relative;border-radius:12px;overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,.1);
  transition:.4s;
}
.gallery-item:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 30px rgba(0,0,0,.2);
}
.gallery-item img{width:100%;height:350px;object-fit:cover;}
.overlay{
  position:absolute;inset:0;
  background:rgba(255,105,180,0);
  transition:.4s;
}
.gallery-item:hover .overlay{
  background:rgba(255,105,180,.25);
}

/* ================= FOOTER ================= */
.site-footer{
  background:#7D7C9D;color:#fff;padding:60px 20px 20px;
  animation:footerFade 1.2s ease forwards;
}
@keyframes footerFade{
  from{opacity:0;transform:translateY(60px);}
  to{opacity:1;transform:translateY(0);}
}
.footer-container{display:flex;gap:40px;max-width:1200px;margin:auto;flex-wrap:wrap;}
.footer-bottom{text-align:center;margin-top:30px;font-size:13px;color:#ccc;}


   /* ===== GLOBAL ===== */
    * { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: Arial, sans-serif; overflow-x: hidden; }

    /* ===== NAVBAR ===== */
    .navbar {
  width:100%; padding:18px 30px;
  display:flex; justify-content:space-between; align-items:center;
  position:fixed; top:0; left:0; z-index:1000;
  /* background: linear-gradient(to right, #fff 50%, #ED72C4 50%); */
  color:#000; /* text black works better on half white */
  transition: background 0.3s;
    }
    .navbar.scrolled { background: rgba(0,0,0,0.9); }
    .nav-logo { font-size:22px; font-weight:700; }
    .nav-links { display:flex; gap:25px; }
    .nav-links a { color:#fff; text-decoration:none; font-weight:500; }
    .nav-links a:hover { color:#ED72C4; }

    /* Hamburger */
    .nav-toggle { display:none; }
    .nav-toggle-label {
      display:none; width:30px; height:22px;
      flex-direction:column; justify-content:space-between;
      cursor:pointer;
    }
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
      display:block; height:3px; width:100%; background:#fff;
      border-radius:2px; position:relative; transition:0.3s;
    }
    .nav-toggle-label span::before { content:""; position:absolute; top:-8px; }
    .nav-toggle-label span::after { content:""; position:absolute; top:8px; }
    .nav-toggle:checked + .nav-toggle-label span { background:transparent; }
    .nav-toggle:checked + .nav-toggle-label span::before { transform: rotate(45deg); top:0; }
    .nav-toggle:checked + .nav-toggle-label span::after { transform: rotate(-45deg); top:0; }
    @media (max-width:768px){
      .nav-links { 
        display:none; flex-direction:column; gap:15px;
        background:rgba(0,0,0,0.9); position:absolute; right:20px; top:60px;
        padding:20px 30px; border-radius:12px; width:auto; max-width:80%;
      }
      .nav-toggle-label { display:flex; }
      .nav-toggle:checked ~ .nav-links { display:flex; }
    }

    /* ===== HERO ===== */
    .hero-section { display:flex; height:70vh; position:relative; }
    .hero-left, .hero-right { flex:1; overflow:hidden; }
    .hero-left img, .hero-right img { width:100%; height:100%; object-fit:cover; }
    .hero-center {
      position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
      display:flex; gap:20px;
    }
    .hero-btn{
      padding:10px 25px; border:1px solid #fff; background:rgba(255,255,255,0.2);
      border-radius:25px; color:#fff; cursor:pointer; transition:0.3s;
    }
    .hero-btn:hover { background:#ED72C4; border-color:#ED72C4; }
    .hero-star { font-size:32px; color:#ED72C4; font-weight:bold; }

    /* ===== ABOUT ===== */
    .about-section { display:flex; justify-content:center; padding:100px 20px 50px; }
    .about-box { display:flex; gap:20px; background:#fff; padding:20px; border-radius:12px; max-width:800px; box-shadow:0 5px 20px rgba(0,0,0,0.1); }
    .about-left img { width:100%; border-radius:12px; object-fit:cover; }
    .about-right { display:flex; flex-direction:column; justify-content:center; }
    .about-right h2 { margin-bottom:15px; }
    .about-right p { margin-bottom:20px; }
    .about-right a { color:#ED72C4; text-decoration:none; font-weight:500; }
    .about-right a:hover { text-decoration:underline; color:#ff1493; }
    @media(max-width:768px){ .about-box{ flex-direction:column; } .about-left img{ margin-bottom:20px; } }

    /* ===== PROJECTS ===== */
    .our-projects-section{ display:flex; gap:40px; padding:80px 20px; flex-wrap:wrap; background:#f9f9f9; justify-content:center; }
    .our-project-box{ flex:1 1 300px; background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 5px 20px rgba(0,0,0,0.1); transition:.4s; }
    .our-project-box img{ width:100%; height:300px; object-fit:cover; }
    .our-project-box:hover{ transform:translateY(-8px) scale(1.02); box-shadow:0 15px 30px rgba(0,0,0,.18); }

    /* ===== GALLERY ===== */
    .photo-gallery-section { padding:80px 20px; text-align:center; }
    .photo-gallery-section h2 { font-size:32px; margin-bottom:50px; }
    .gallery-grid {
      display:grid; grid-template-columns:repeat(3,1fr); gap:25px;
    }
    .gallery-item{ position:relative; border-radius:12px; overflow:hidden; box-shadow:0 8px 25px rgba(0,0,0,.1); transition:.4s; }
    .gallery-item img{ width:100%; height:350px; object-fit:cover; display:block; }
    .overlay{ position:absolute; inset:0; background:rgba(255,105,180,0); transition:.4s; }
    .gallery-item:hover .overlay{ background:rgba(255,105,180,.25); cursor:pointer; }
    @media(max-width:1024px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } .gallery-item img{ height:300px; } }
    @media(max-width:480px){
      .gallery-grid{ grid-template-columns:1fr; gap:20px; }
      .gallery-item img{ width:100%; height:auto; }
    }

    /* ===== FOOTER ===== */
    .site-footer{ background:#7D7C9D; color:#fff; padding:60px 20px 20px; }
    .footer-container{ display:flex; flex-wrap:wrap; gap:40px; max-width:1200px; margin:auto; justify-content:space-between; }
    .footer-bottom{text-align:center;margin-top:30px;font-size:13px;color:#ccc; }

    /* ===== REVEAL ===== */
    .reveal{ opacity:0; transform:translateY(40px); transition:0.8s ease; }
    .reveal.active{ opacity:1; transform:translateY(0); }
    .reveal.active{ opacity:1; transform:translateY(0); }
