@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --text-dark: #000000;
  --text-light: #000000;
  --extra-light: #f0ffff;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Montserrat", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: 93%;
  margin: auto;
  padding: 1.5rem 1rem;
}

.section__header {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 540;
  font-family: var(--header-font);
  color: var(--text-dark);
  text-align: center;
  
}

.section__description {
  color: var(--text-light);
  line-height: 1.75rem;
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background: linear-gradient(135deg,#c3b091,#6b5b40);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--text-light);
  background: #6b5b40;
  
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

.header {
  min-height: 600px;
  background-image: radial-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.9)),
    url("/static/images/entry\ bg\ big.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color:  rgb(120, 112, 78);
}

.nav__logo img {
  max-width: 70px;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  list-style: none;
  position: absolute;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  background-color:   rgb(194, 184, 142);
  transform: translateY(-100%);
  transition: 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links .nav__logo {
  display: none;
}

.nav__links a {
  padding-bottom: 5px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  border-bottom: 2px solid transparent;
}

.nav__links a:hover {
  border-color: var(--white);
}

.about__container .section__description {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.about__container img {
  max-width: 170px;
  margin-inline: auto;
}

.portfolio__grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.portfolio__card {
  position: relative;
  isolation: isolate;
}

.portfolio__card::after {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  font-family: var(--header-font);
  color: var(--white);
}

/* .portfolio__card:nth-child(1)::after {
  content: "Portraits";
}

.portfolio__card:nth-child(2)::after {
  content: "Weddings";
}

.portfolio__card:nth-child(3)::after {
  content: "Fashions";
} */

.portfolio__content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
}

.portfolio__card:hover .portfolio__content {
  opacity: 1;
}

.service {
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("/static/images/photomantra\ bg1.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service__container .section__header {
  color: var(--white);
}

.service__container .section__description {
  max-width: 600px;
  margin-inline: auto;
  color: var(--extra-light);
}

.service__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.service__card {
  text-align: center;
}

.service__card h4 {
  position: relative;
  isolation: isolate;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 400;
  font-family: var(--header-font);
  color: var(--white);
}

.service__card h4::after {
  position: absolute;
  content: "-";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  line-height: 0;
}

.service__card p {
  color: var(--extra-light);
  line-height: 1.75rem;
}

.client__container {
  padding-bottom: 2rem;
}

.swiper {
  margin-top: 2rem;
  padding-bottom: 3rem;
  width: 100%;
}

.client__card {
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.client__card img {
  max-width: 120px;
  margin-inline: auto;
  margin-bottom: 2rem;
  border-radius: 100%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.client__card p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.75rem;
}

.client__card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.swiper-pagination-bullet-active {
  background-color: var(--text-dark);
}

.gallery__grid {
  margin-block: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.gallery__grid img {
  transition: 0.3s;
}

.gallery__grid:hover img:not(:hover) {
  opacity: 0.5;
}

.gallery__btn {
  text-align: center;
  
}

.blog {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/static/images/entry1.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.blog__container {
  padding-block: 8rem;
  display: grid;
}

.blog__content {
  text-align: center;
}

.blog__content .section__header {
  margin-bottom: 2rem;
  color: var(--white);
}

.blog__content h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 400;
  font-family: var(--header-font);
  color: var(--white);
}

.blog__content p {
  margin-bottom: 2rem;
  line-height: 1.75rem;
  color: var(--extra-light);
}

.blog__content .btn {
  background-color: transparent;
  border: 1px solid var(--white);
}



.instagram__container {
  overflow: hidden;
}

.instagram__flex {
  margin-top: 2rem;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1rem;

  animation: scroll 45s linear infinite;
}

.instagram__flex img {
  max-width: 215px;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.footer__container {
  display: grid;
  gap: 4rem 0;
  align-items: center;
}

.footer__col {
  padding-inline: 2rem;
}

.footer__container img {
  max-width: 170px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.footer__socials a:hover {
  color: var(--text-light);
}

.footer__links {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer__links a {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.footer__links a:hover {
  color: var(--text-light);
}

.footer__col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.footer__col p {
  color: var(--text-light);
  line-height: 1.75rem;
  text-align: center;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--extra-light);
  background-color: rgb(59, 58, 52);
  text-align: center;
}

@media (width > 540px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  


  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:nth-child(1) {
    grid-area: 1/1/2/3;
  }

  .footer__col:nth-child(3) {
    border-left: 2px solid var(--text-dark);
  }
}

@media (width > 768px) {
  .header {
    min-height: 100px;
    
  }


  nav {
    padding: 1rem 1rem;
    position: static;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
  }

  .nav__header {
    display: none;
  }

  .nav__links {
    padding: 0;
    width: 100%;
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: space-between;
    background-color: transparent;
  }

  .nav__links .nav__logo {
    display: block;
  }

  .nav__links .nav__logo img {
    max-width: 150px;
  }

  .portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .blog__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog__content {
    grid-column: 2/3;
  }

  .footer__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__col:nth-child(1) {
    grid-area: 1/2/2/3;
    border-left: 2px solid var(--text-dark);
    border-right: 2px solid var(--text-dark);
  }

  .footer__col:nth-child(3) {
    border: none;
  }
}

@media (width > 1024px) {
  .header {
    /* min-height: 100px; */
    min-height: 900px;
  }
  

  .portfolio__grid {
    gap: 2rem;
  }
}







.PHOTOMANTRA1{
    max-width:1450px;
    margin:auto;
    padding:80px 50px;
}

/* =========================
   GRID STRUCTURE
========================= */
.PHOTOMANTRA2{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:70px;
    align-items:center;
}

/* =========================
   LEFT CONTENT
========================= */
.PHOTOMANTRA3{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.PHOTOMANTRA4{
    color:#f5a623;
    letter-spacing:4px;
    font-size:13px;
    font-weight:600;
}

.PHOTOMANTRA5{
    font-size:58px;
    line-height:1.15;
    font-weight:700;
    max-width:720px;
    color: rgb(0, 0, 0);
}

.PHOTOMANTRA6{
    font-size:18px;
    color:#000000;
    max-width:650px;
    line-height:1.8;
}

/* =========================
   STORY CARD
========================= */
.PHOTOMANTRA7{
    display:flex;
    gap:24px;
    align-items:center;
    background:	#5c4d3f;
    padding:18px;
    border-radius:20px;
    box-shadow:0 18px 40px rgba(0,0,0,0.45);
}

.PHOTOMANTRA8{
    width:160px;
    height:115px;
    border-radius:16px;
    overflow:hidden;
    flex-shrink:0;
}

.PHOTOMANTRA8 img{
    width:100%;
    height:106%;
    object-fit:cover;
}

.PHOTOMANTRA9{
    font-size:15px;
    color:#d6d6d6;
    line-height:1.7;
}

/* =========================
   STATS SECTION
========================= */
.PHOTOMANTRA10{
    margin-top:3px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.PHOTOMANTRA11{
    background:#5c4d3f;
    padding:26px 12px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 12px 28px rgba(0,0,0,0.45);
}

.PHOTOMANTRA12{
    font-size:40px;
    font-weight:700;
    color:#ffffff;
}

.PHOTOMANTRA13{
    margin-top:8px;
    font-size:14px;
    color:#bcbcbc;
    letter-spacing:0.3px;
}

/* =========================
   RIGHT IMAGE
========================= */
.PHOTOMANTRA14{
    position:relative;
}

.PHOTOMANTRA14 img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:26px;
    box-shadow:0 30px 70px rgba(0,0,0,0.6);
}

/* =========================
   FLOATING RATING
========================= */
.PHOTOMANTRA15{
    position:absolute;
    bottom:-30px;
    right:-30px;
    background:linear-gradient(180deg,#ffffff,#f1f1f1);
    color:#000;
    padding:24px;
    width:190px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,0,0,0.35);
}

.PHOTOMANTRA16{
    font-size:14px;
    font-weight:600;
    color:#f5a623;
}

.PHOTOMANTRA17{
    color:#f5a623;
    font-size:18px;
    margin:6px 0;
}

.PHOTOMANTRA18{
    font-size:42px;
    font-weight:700;
}

.PHOTOMANTRA19{
    margin-top:6px;
    font-size:12px;
    background:#f5a623;
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    display:inline-block;
}

/* ==================================================
   RESPONSIVE MEDIA QUERIES (7)
================================================== */

/* ≤1400px */
@media(max-width:1400px){
    .PHOTOMANTRA5{font-size:52px;}
}

/* ≤1200px */
@media(max-width:1200px){
    .PHOTOMANTRA2{gap:50px;}
    .PHOTOMANTRA14 img{height:480px;}
}

/* ≤992px (TABLET) */
@media(max-width:992px){
    .PHOTOMANTRA2{
        grid-template-columns:1fr;
    }
    .PHOTOMANTRA14{
        order:-1;
    }
    .PHOTOMANTRA14 img{
        height:420px;
    }
}

/* ≤768px (MOBILE PREMIUM) */
@media(max-width:768px){

    /* body{
        background:radial-gradient(circle at top,#2b2b2b,#0f0f0f);
    } */

    .PHOTOMANTRA1{
        padding:30px 18px 70px;
    }

    .PHOTOMANTRA14 img{
        height:320px;
        border-radius:22px;
    }

    .PHOTOMANTRA15{
        left:50%;
        right:auto;
        transform:translateX(-50%);
        bottom:-80px;
    }

    .PHOTOMANTRA3{
        margin-top:55px;
        background:#fce8d7;
        padding:30px 22px 38px;
        border-radius:24px;
    }

    .PHOTOMANTRA5{
        font-size:34px;
    }

    .PHOTOMANTRA6{
        font-size:16px;
    }

    .PHOTOMANTRA7{
        flex-direction:column;
    }

    .PHOTOMANTRA8{
        width:100%;
        height:170px;
    }

    .PHOTOMANTRA10{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }
}

/* ≤480px */
@media(max-width:480px){

   .header {
  
  background-image: 
    url("/static/images/entry\ bg\ small.webp");
 
}
    .PHOTOMANTRA5{font-size:28px;}
    .PHOTOMANTRA14 img{height:260px;}
    .PHOTOMANTRA12{font-size:34px;}
}

/* ≤360px */
@media(max-width:360px){

   .header {
  
  background-image: 
    url("/static/images//entry\ bg\ small.webp");
 
}
    .PHOTOMANTRA5{font-size:25px;}
    .PHOTOMANTRA10{grid-template-columns:1fr;}
}