/* fonts.css */
@font-face {
  font-family: 'BrushScriptMT';
  src:
    local('Brush Script MT'),
    local('BrushScriptMT'),
    url('/assets/fonts/Brush-Script-MT-Regular.ttf') format('woff2'),
    url('/assets/fonts/Brush-Script-MT-Regular.ttf') format('woff'),
    url('/assets/fonts/Brush-Script-MT-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* shows fallback text until font loads */
}


:root {
  --text-dark: #171717;
  --text-light: #525252;
  --extra-light: #a3a3a3;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 3rem 1rem;
}

.section__header {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: bold;
  font-family: var(--header-font);
  color: var(--text-dark);
  text-align: center;
  font-family: 'BrushScriptMT', 'Brush Script MT', cursive; /* fallbacks */
  font-size: clamp(28px, 6vw, 72px);
  letter-spacing: 0.02em;
}

.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: var(--white);
  background-color: var(--text-dark);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--text-light);
}

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("assets/header.avif");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.heading {
  display: flex;
  justify-content: center;
}
.heading p {
  text-align: center;
  color: white;
  font-size: 40px;
}

.heading2 {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading2 p {
    font-size: 15px; /* your preferred size */
    letter-spacing: 3px;
    font-weight: 500;
    position: relative;
    padding: 0 20px; /* spacing between text & lines */
    color: white; /* change based on bg */
}

/* .heading2 p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 60px;
    height: 1px;
    background: white; 
    transform: translateY(-50%);
}

.heading2 p::after {
    content: "";
    position: absolute;
    right: 5;
    top: 50%;
    width: 60px;
    height: 1px;
    background: white;
    transform: translateY(-50%);
} */

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: var(--text-dark);
}

.nav__logo img {
  max-width: 60px;
}

.nav__logo2 .text2 p {
  font-size: 30px;
  color: white;
  text-align: center;
}

.nav__logo2 .text2 .wedding{
  font-size: 15px;
  text-align: center;
}

.nav__logo2 {
  display: flex;
  justify-content: center;
}

.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: var(--text-dark);
  transform: translateY(-100%);
  transition: 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links .nav__logo {
  display: none;
}

.nav__header .nav__logo{
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__header .nav__logo .text p{
  color: white;
  font: bold;
}

.nav__header .nav__logo .text .color{
  color: rgb(255, 255, 255);
  font-size: 20pxy;
}

.heading .color{
  color: brown;
  font: bolder;
}

.nav__links a {
  padding-bottom: 5px;
  font-weight: 500;
  color: var(--white);
  border-bottom: 2px solid transparent;
}

.nav__links a:hover {
  border-color: var(--white);
}

/* Layout */
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* bigger image like the reference */
  gap: 48px;
  align-items: center;
}

.about__photo {
  position: relative;
  border: 8px solid #0f0f0f; /* dark frame like the screenshot */
  overflow: hidden;
}

.about__photo img {
  width: 100%;
  height: 560px;           /* adjust to your image ratio */
  object-fit: cover;
  display: block;
  filter: contrast(1.03) saturate(1.02);
}

/* Typography & spacing */
.section__header {
  font-size: clamp(32px, 3.5vw, 38px);
  line-height: 1.1;
  color: #000000;          /* assume dark bg; tweak as needed */
  margin: 0 0 12px 0;
}

.about__rule {
  display: block;
  width: 56px;
  height: 2px;
  background: #ffffff;
  opacity: 0.5;
  margin: 10px 0 28px 0;
}

.about__copy .section__description {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 18px 0;
  max-width: 52ch;
}

/* Outline button */
.btn--outline {
  display: inline-block;
  padding: 12px 18px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

/* Container helpers (if not already present) */
.section__container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 5%;
}

/* Responsive */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about__photo img {
    height: 420px;
  }
  .about__copy .section__description {
    max-width: none;
  }
}


.about__container .section__description {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 2rem;
}


.about__container img {
  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.7), rgba(0, 0, 0, 0.9)),
    url("assets/service.avif");
  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 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: 900px;
  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("assets/blog.avif");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.blog__container {
  padding-block: 15rem;
  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: 135px;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.footer__container {
  display: grid;
  gap: 4rem 0;
  align-items: center;
  justify-content: center;
}

.footer-bar {
  border-top: 1px solid #2e2e2e;  
  margin-top: 2rem;                
  padding-top: 1rem;   
  padding-bottom: 1rem;            
  text-align: center;
  font-size: 0.875rem;             
  color: #5a5a5a;                 
}

.footer-line {
  display: inline-flex;            
  align-items: center;             
  justify-content: center;         
  gap: 0.25rem;                   
}

.heart-icon {
  width: 1rem;                     
  height: 1rem;
  fill: #ef4444;                  
  margin: 0 0.25rem;               
  vertical-align: -2px;
}

.brand-link {
  display: inline-flex;            
  align-items: center;             
  gap: 0.25rem;                    
  text-decoration: none;
  color: #ea580c;                  
  font-weight: 500;
}

.brand-link:hover {
  text-decoration: underline;      
}

.brand-logo {
  width: 1.25rem;                  
  height: 1.25rem;                 
  object-fit: contain;             
}


.footer__col{
  border-radius: 10px;
}

.footer__col .map{
  display: flex;
  justify-content: center;
}

.footer__col .map iframe{
  border-radius: 10px;
  border: 0;
}

.footer__col {
  padding-inline: 2rem;
}

.footer__container img {
  max-width: 170px;
  margin-inline: auto;
}

.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: var(--text-dark);
  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 < 769px) {

  .heading {
  display: flex;
  justify-content: center;
}
.heading p {
  text-align: center;
  color: white;
  font-size: 35px;
  margin-top: 35%;
}

.heading2 {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading2 p {
    font-size: 15px; /* your preferred size */
    letter-spacing: 3px;
    font-weight: 500;
    position: relative;
    padding: 0 20px; /* spacing between text & lines */
    color: white; /* change based on bg */
}
}

@media (width < 769px) {

   .header {
    min-height: 668px;
  }

  .nav__logo2 .text2{
    margin-top: 65%;
  }
  .nav__logo2 .text2 p {
  font-size: 20px;
  color: white;
}

}

@media (width > 768px) {
  .header {
    min-height: 650px;
  }

  nav {
    padding: 2rem 1rem;
    position: static;
    max-width: 900px;
    display: flex;
    justify-content: center;
    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: 100px;
  }

  .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: 850px;
  }

  .portfolio__grid {
    gap: 2rem;
  }
}
