:root {
  --bg: #ffffff;
  --text: #111111;
  --max-width: 1800px;
  --content-width: min(calc(100% - 2rem), var(--max-width));
}

.site-header {
  padding: 0.75rem 0 2rem;
  width: var(--content-width);
  margin: 0 auto;
}

/* Topbar */
.topbar {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
}

.social-link svg {
  width: 80%;
  height: 100%;
  stroke: var(--text);
  fill: none;
  margin-top: 50px;
  margin-left: 50px;
}

.brand {
  justify-self: center;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  display: inline-block;
  margin-bottom: 10px;
}

/* NAV */
.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 1rem;
}

.site-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 4px;
  text-decoration: none;
  line-height: 1.05;
  color: inherit;
}

/* Hover line */
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--text);
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--text);
  left: 0;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}
.menu-toggle span:nth-child(2) {
  top: 10px;
}
.menu-toggle span:nth-child(3) {
  bottom: 0;
}

/* CROSS ANIMATION */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .site-header {
    padding: 1.5rem 0;
  }

  .topbar {
    grid-template-columns: 40px 1fr 40px;
  }

  .social-link {
    display: block;
    width: 100%;
    height: 100%;
  }

  .brand {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    justify-self: center;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav a {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
    .social-link svg {
        margin-top: 0;
        margin-left: 0;
    }
}

/* HOME - video tagline */

.video-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 10px; /* Small is more elegant here */
  letter-spacing: 4px; /* The key to the "gallery" look */
  text-transform: uppercase;
  color: #777; /* Soft grey so it doesn't distract from the video */
  margin-top: 15px;
  font-weight: 300;
  text-align: left; /* Align it with the edge of the video */
}

.video-tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 16px;
  color: #444;
  margin-top: 12px;
  border-left: 2px solid #fc0000; /* Adds a small vertical line on the left */
  padding-left: 15px;
}

/* HEADER-END */





/* ABOUT PAGE CSS START */

.about-container {
  background-color: #ffffff; 
  padding: 100px 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr; 
  gap: 80px;
  align-items: flex-start;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.about-image:hover img {
  filter: grayscale(0%);
}

.about-content {
  padding-top: 20px;
}

.label {
  display: block;
  font-family: sans-serif;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 30px;
}

.about-content p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
  font-weight: 300;
}

.lead-para {
  font-size: 1.4rem !important;
  line-height: 1.6 !important;
  color: #000 !important;
}

.signature {
  margin-top: 50px;
  font-family: serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #000;
  border-top: 1px solid #eee;
  padding-top: 20px;
  display: inline-block;
}

/* Mobile: Stack layout */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-container {
    padding: 60px 20px;
  }
}

body {
  opacity: 0;
  transform: translateY(20px);
  animation: fadePage 0.8s ease forwards;
}

@keyframes fadePage {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.modal-open {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}


/* ABOUT PAGE CSS END */




/* footer start */

.top-nav {
  text-align: center;
  padding: 60px 20px;
}

/* Instagram Icon */
.insta-icon {
  font-size: 35px;
  margin-bottom: 20px;
}

.fa-brands.fa-instagram {
      color: black !important;
    }

/* Menu */
.menu {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.menu a {
  text-decoration: none;
  color: #1a2a3a;
  font-size: 18px;
  letter-spacing: 4px;
  position: relative;
  display: inline-block;
}

/* Hidden line initially */
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #1a2a3a;
  transition: width 0.4s ease;
}

/* Hover pe left → right grow */
.menu a:hover::after {
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 600px) {
  .top-nav {
    padding: 30px 10px; /* Reduced padding for mobile */
  }

  .insta-icon {
    font-size: 30px; /* Slightly smaller icon */
    margin-bottom: 15px;
  }

  .menu {
    flex-direction: column; /* Stacks links vertically */
    gap: 20px; /* Smaller gap between vertical items */
    align-items: center;
  }

  .menu a {
    font-size: 16px; /* Slightly smaller text for better fit */
    letter-spacing: 2px; /* Reduced letter spacing so text doesn't wrap */
  }
}

/* footer end */