/* Modern About Page Styles */
:root {
    --primary-color: #f76c0a;
    --secondary-color: #2d3436;
    --text-color: #2d3436;
    --background-color: #ffffff;
    --accent-color: #ffd3d3;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Source Sans 200' !important; */
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    /* background: white; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
    overflow: hidden;
    /* font-family: 'Source Sans 200' !important; */
}
.container h2{
    /* font-family: 'Source Sans 200' !important; */
}
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--white);
    box-shadow: var(--shadow);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style-type: none;
}

.contact,
.social-icons {
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.call {
    /* display: none; */
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.fa-facebook-f, .fa-instagram, .fa-twitter{
    padding: 10px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a,
.social-icons1 a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover,
.social-icons1 a:hover {
    transform: translateY(-3px);
    padding: 10px;
}

.social-icons .fa-facebook-f,
.social-icons1 .fa-facebook-f {
    background: #1877f2;
    color: white;
    padding: 10px;
}

.social-icons .fa-instagram,
.social-icons1 .fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icons .fa-twitter,
.social-icons1 .fa-twitter {
    background: #1da1f2;
    color: white;
}
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}


@media (min-width: 769px) {
    .desktop-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        gap: 10px;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 2em;
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

    .nav-links li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links .mobile-only {
        width: 100%;
        text-align: center;
        /* margin: 1rem 0; */
    }

    .nav-links .social-icons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        /* margin-top: 2rem; */
        width: 100%;
    }

    .nav-links .social-icons a {
        font-size: 1rem;
        color: var(--primary-color);
           /* width: 40px; */
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    padding: 10px;
    }

    .fa-facebook-f, .fa-instagram, .fa-twitter{
    padding: 10px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    }

    .nav-links .call {
        width: 100%;
        max-width: 300px;
        /* margin: 1rem auto; */
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}



  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  .space{
    height: 5px;
    padding-top: 90px;
  }
 .map-container{
    width: 100%;
    /* height: 400px; */
    padding: 30px;
    padding-top: 90px;
 }
 .map-column {
    width: 100%;
    height: 400px;
    
    padding-top: 30px;
  }
  h1{
    text-align: center;
    margin-top: 20px;
  }
  .map-column iframe {
    width: 100%;
    height: 100%;
    /* border-radius: 8px; */
  }

  .location-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    /* background-color: #f8f8f8; */
    width: 80%;
    margin: auto;
    /* height: 400px; */
    text-align: center !important;
  }

  .contact-info{
    padding: 10px;
  }
  .contact-info h2{
    padding-bottom: 20px;
  }
  .grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
  }
  
  .row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e36500;
    padding-bottom: 10px;
  }
  
  .column {
    flex: 1;
    min-width: 280px;
    padding: 10px 0;
    border-right: 1px solid #e36500;
  }
  
  /* Remove right border on last column */
  .column:last-child {
    border-right: none;
  }
  
  /* Full-width column (like "Book a Shoot") */
  .full-width {
    width: 100%;
    border-right: none;
    border-bottom: none;
  }
  .row1 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
     border-bottom: none; 
    padding-bottom: 10px;
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .grid-wrapper{
        display: inline;
    }
    .row {
      /* flex-direction: column; */
      display: block;
      gap: 10px;
      border-bottom: none;
    }
    .row1 {
     border-bottom: none; 
  }
  
    .column {
      border-right: none;
      border-bottom: 1px solid #e36500;
      padding-bottom: 15px;
      display: block;
    }
  
    .column:last-child {
     border-bottom: 1px solid #e36500;
    }
  }
  
  
  @media (max-width: 768px) {
    .location-container {
      flex-direction: column;
      display: block;
      width: 100%;
      height: auto;
    }
    .map-column iframe {
        width: 100%;
        height: 200px;
        border-radius: 8px;
      }
    .map-column{
        height: 200px;
    }
      .address-column {
        /* display: flex;  */
        flex-direction: column;
        justify-content: center;
        /* padding: 10px; */
      }
      .address-column p{
        padding: 10px;
        text-align: center;
        font-size: 20px;
    
      }
      .address-column h1{
        text-align: center;
        padding: 10px;
      }
      h1{
        margin-top: 0px;
      }
  }
.footer-bottom {
    text-align: center;
    font-size: 1.0rem;
    color: #aaa;
    /* margin-top: 30px; */
    border-top: 1px solid #333;
    padding-top: 30px;
    padding-bottom: 20px;
    background-color: #0f2838;
    font-family: 'Source Sans 200' !important;
  }
  .footer-bottom p a{
    color: #aaa;
    text-decoration: none;
  }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

   @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
} 