.btn-row {
  display: flex;
  gap: 20px;      /* space between buttons */
  margin-top: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Georgia, serif;
}

body {
  background: #f7f6f5;
  color: #2a2a2a;
}

/* UNIVERSAL SECTION BORDERS — NEW */
.hero,
.projects,
.split,
.gallery-hero,
.subscribe {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

/* NAVIGATION */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background: #ede9e7;
}

.nav a {
  text-decoration: none;
  color: black;
  margin-right: 20px;
  font-size: 18px;
}

nav a:hover {
  color: #eeb7b7; 
}

/* HERO SECTION */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 100px 60px;
  background: #c7c0cc;
  gap: 50px;
  align-items: center;
}

.hero-left h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 20px;
  margin-bottom: 30px;
}

.primary-btn {
  background: #eeb7b7;
  border: none;
  padding: 15px 40px;
  font-size: 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  margin-bottom: 15px;  
}

.primary-btn a {
  text-decoration: none;
  color: #2a2a2a;
}

.primary-btn a:hover {
  color: #f7f6f5;
}

.primary-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.hero-right img {
  width: 100%;
  border-radius: 40px;
}

/* SPLIT SECTION */
.split {
  grid-template-columns: 1fr 1fr;
  padding: 80px 60px;
  background: #e8b7b4;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.split-text {
  text-align: center;
}

.outline-btn {
  background: white;
  border: 2px solid black;
  padding: 15px 40px;
  border-radius: 30px;
  margin-top: 20px;
  text-decoration: none;
  transition: 0.3s ease;
  text-align: center;
}

.outline-btn a {
  text-decoration: none;
  color: #2a2a2a;
  font-size: 18px;
  text-align: center;
}

.outline-btn a:hover {
  color: white;
}

.outline-btn:hover {
  background: black;
  color: white;
  border: 2px solid white;
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* PROJECTS SECTION */
.projects {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  padding: 80px 60px;
  background: #f1ebe7;
}

.project-card {
  background: #c6be7f;
  padding: 40px;
  width: 28%;
  border-radius: 40px;
  line-height: 1.6;
  text-align: center;
  transition: 0.3s ease;
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.project-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.project-card p {
  font-size: 16px;
  margin-bottom: 25px;
}

.project-card a {
  color: black;
  font-weight: bold;
  text-decoration: underline;
}

.project-card a:hover {
  color: #f7f6f5;
}

/* WRAPS SUBSCRIBE + FOOTER */
.subscribe-footer-wrapper {
  background: #f7f6f5;
  width: 100%;
  padding-top: 60px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}

/* SUBSCRIBE */
.subscribe {
  background: #c6be7f;
  padding: 60px;
  width: 80%;
  margin: 80px auto;
  border-radius: 40px;
  text-align: center;
}

.subscribe input,
.subscribe textarea {
  width: 100%;
  padding: 15px;
  border-radius: 20px;
  border: none;
  margin-top: 15px;
}

.subscribe:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.row {
  display: flex;
  gap: 20px;
}

.submit-btn {
  background: black;
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  margin-top: 20px;
  border: none;
}

/* FOOTER */
.cream-overlay,
.cream-overlay-photo {
  background: #f7f6f5;
  padding: 80px 0;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  border-radius: 0 0 50px 50px;
  margin-bottom: -60px;
  position: relative;
  z-index: 2;
}

.footer {
  background: #c7c0cc;
  padding: 100px 60px 60px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

#lets-connect,
#my-story {
  display: flex;
}

/* ABOUT */
.green-overlay {
  background: #c6be7f;
  padding: 80px 0;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  border-radius: 0 0 50px 50px;
  margin-bottom: -60px;
}

.split-about {
  grid-template-columns: 1fr 1fr;
  padding: 80px 60px;
  background: #e8b7b4;
  gap: 40px;
  text-align: center;
}

/* GALLERY LAYOUT */
.gallery-wrapper {
  background: #f7f6f5;
  padding: 80px 60px 120px;
  border-radius: 0 0 60px 60px;
  border-bottom: 1px solid black;
  margin-top: -40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.photo-card {
  background: #bdb57a;
  padding: 30px;
  border-radius: 40px;
  border: 1px solid black;
  text-align: center;
  transition: 0.3s ease;
}

.photo-card img {
  width: 100%;
  border-radius: 20px;
}

.photo-card:hover {
  transform: scale(1.03);
}

/* GALLERY HERO */
.gallery-hero {
  background: #c7c0cc;
  padding: 100px 40px 60px;
  text-align: center;
}

.gallery-hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

/* ----------------------------- */
/* ⭐ CLEANED + FIXED GC IMAGES ⭐ */
/* ----------------------------- */

.gc-project-row {
  width: 85%;
  margin: 60px auto;
  display: flex;
  align-items: center;
  gap: 40px;
  background: #c6be7f;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid black;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* ADD THIS */
}

.gc-project-row:hover {
  transform: scale(1.03); /* slight zoom */
  box-shadow: 0 12px 25px rgba(0,0,0,0.2); /* subtle shadow */
}


.gc-project-row.reverse {
  flex-direction: row-reverse;
}

/* ---- IMAGE CONTAINER ---- */
.gc-img-container {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 25px;
  overflow: hidden;
  border: none;
}

/* ---- IMAGES + VIDEOS ---- */
.gc-img-container img,
.gc-img-container video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: none;
  border-radius: 0;
  
}

/* TEXT COLUMN */
.gc-text-container {
  flex: 1;
}

.gc-text-container h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.gc-text-container p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* CAROUSEL */
.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 30px;
  margin: 20px 0;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 0 0 100%;
  border-radius: 30px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn:hover {
  background: black;
}

.prev { left: 10px; }
.next { right: 10px; }



.gc-img-container.two-up {
  display: flex;
  gap: 20px;
}

.gc-img-container.two-up img {
  width: 50%;
  border-radius: 25px;
  object-fit: contain;
}


.projects-photo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  margin: 40px auto;
  width: 90%;
}

.project-card-photo {
  background: #bdb57a;
  padding: 25px;
  border-radius: 30px;
  border: 1px solid black;
  width: 18%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* Prevent blow-up stretching */
  border-radius: 20px;
}

/* Make sure GC rules DO NOT override photography images */
.project-card-photo img.responsive-img {
  width: 100%;
  height: auto;
  object-fit: cover !important;
  border-radius: 20px !important;
}

.photo-section-title {
  text-align: center;
  padding: 10px;
}

.project-card-photo:hover {
  transform: scale(1.03); /* slight zoom */
  box-shadow: 0 12px 25px rgba(0,0,0,0.2); /* subtle shadow */
}



/* =========================================
   📱 MOBILE RESPONSIVE — All Pages
   Trigger: Screens 768px wide or smaller
========================================= */
@media (max-width: 768px) {

  /* NAVIGATION */
  .nav {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 10px;
  }

  .nav-right {
    flex-direction: column;
    gap: 8px;
  }

  .nav-right a {
    font-size: 12px;
  }

  /* HERO SECTIONS (Home + About) */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 20px;
  }

  .hero-left h1 {
    font-size: 32px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .hero-right img {
    width: 90%;
    max-width: 330px;
    border-radius: 20px;
  }
  
  .gallery-hero h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

  /* PROJECT CARDS ON HOME */
  .projects {
    flex-direction: column;
    padding: 20px;
    gap: 25px;
  }

  .project-card {
    width: 100%;
    margin: 0 auto;
  }

  /* CAROUSEL */
  .carousel {
    width: 100%;
  }
  .carousel-track img {
    width: 100%;
    height: auto;
  }

  /* SPLIT SECTIONS */
  .split,
  .split-about {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .split-text,
  .split-text-about {
    width: 100%;
  }

  /* BUTTONS */
  .outline-btn,
  .primary-btn,
  .submit-btn {
    width: 100%;
    text-align: center;
  }

  /* FORMS */
  .subscribe form .row {
    flex-direction: column;
    gap: 15px;
  }

  .subscribe input,
  .subscribe textarea {
    width: 100%;
  }

  /* PHOTO PAGE GRID */
  .projects-photo {
  display: flex;
  flex-direction: column;      /* stack vertically */
  gap: 20px;
  width: 100%;
  padding: 20px;
}

.project-card-photo {
  background: #bdb57a;
  padding: 20px;
  border-radius: 25px;
  border: 1px solid black;
  width: 100%;                 /* full width */
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-card-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;          /* full photo visible */
  border-radius: 15px;
}
  /* GC PROJECT PAGE ROWS */
  .gc-project-row,
  .gc-project-row.reverse {
    flex-direction: column !important;
    text-align: center;
    padding: 20px;
  }

  .gc-img-container img {
    width: 100%;
    max-width: 350px;
  }

  .gc-text-container h2 {
    font-size: 24px;
  }

  .gc-text-container p {
    font-size: 16px;
  }

  /* FOOTER */
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 70px;
  }
  
  .primary-btn {
    width: 100%;
    margin-bottom: 20px; /* <-- MOBILE SPACING */
    font-size: 12px;
  }
  
  btn-row {
  flex-direction: column;
  width: 100%;
  gap: 15px;
}

.btn-row .primary-btn {
  width: 100%;
}
}