/* nav bar */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               Helvetica, Arial, sans-serif,
               "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

  line-height: 1.6;
  color: #222;
  background: #fafafa;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
}

body {
    margin: 0;
    
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 40px;
  background: white;
  border-bottom: 1px solid #eee;

  position: relative;
}

/*
.logo {
  font-size: 50px;
  /*text-transform: uppercase; 
  font-weight: bold;
} 
*/

.logo {
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #222;
}

.logo:hover {
  opacity: 0.8;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #777;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 768px){
  .menu-toggle {
    display: block;
  }

  .nav-links{
    position: absolute;
    top: 70px;
    left: 0;

    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }

  .nav-links.active{
    max-height: 300px;
    opacity: 1;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
  }
}

/*
.navbar .logo{
    font-size: 40px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    color: white;
    padding: 15px 30px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgb(179, 176, 176);
    text-decoration: none;
}

.nav-links a:hover {
    color: black;
    text-decoration: none;
}

.logo {
    font-weight: 800;
    font-size: 20px;
    color: black;
} */

/* Main Content */


.main-content{
    padding: 90px;
    box-sizing: border-box;
}  

@media (max-width: 768px) {
  .main-content{
  padding: 0;
  box-sizing: border-box;
}
}
.main-content-contact{
  padding: 0;
  box-sizing: border-box;
}

.gallery {
  column-count: 4; /* creates mansory-style layout, mix the sizes */
  column-gap: 16px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease; /* to smooth animation hover */
}

.gallery img:hover{
    transform: scale(1.05); /* slightly zooms image */
    opacity: 0.85;
}

.lightbox{
    position: fixed; 
    inset: 0; /* shorthand for top:0, right:0, bottom:0, left:0 */
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* ensures it appears above everything */
}

.lightbox-img{
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
}

.lightbox.active{
    display: flex;
}

.close{
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.prev, .next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.prev {
    left: 40px;
}

.next {
    right: 40px;
}

button:hover, .close:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
  .gallery {
    column-count: 2;
  }
}

/* ABOUT */

.about {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Image container */
.about-image img {
  width: 420px;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Subtle hover effect */
.about-image img:hover {
  transform: scale(1.02);
}

/* Text side */
.about-content {
  max-width: 520px;
}

/* Title */
.about-content h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

/* Subtitle */
.about-subtitle {
  font-size: 18px;
  color: #777;
  margin-bottom: 25px;
}

/* Main text */
.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

@media (max-width: 768px) {

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-image img {
    width: 80%;
  }

}

/* CONTACT US */

/* Page Layout */

/*
.contact {
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  padding: 60px 20px;
  margin-left: inherit;
} */


.contact {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  padding: 20px;
  font-family: Arial, sans-serif;
} 

/* Form Container */
.contact-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 450px;
}

/* Title */
.contact-box h2 {
  margin-bottom: 25px;
  font-weight: 500;
  text-align: center;
  color: #222;
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 28px;
}

/* Labels */
label {
  margin-bottom: 6px;
  font-size: 14px;
  color: #555;
}

/* Inputs & Textarea */
input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  resize: none;
}

/* Focus Effect */
input:focus,
textarea:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Button */
#contact-button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.1s ease;
}

/* Button Hover */
#contact-button:hover {
  background: #333;
}

/* Button Click Effect */
#contact-button:active {
  transform: scale(0.98);
}

@media (max-width: 600px){

  .contact{
    min-width: 300px;
    padding: 40px 20px;
    margin-left: auto;
  }

  .contact-box{
    padding: 30px;
  }

  .contact-box h2{
    font-size: 24px;
  }

  #contact-button{
    padding: 16px;
    font-size: 16px;
  }

}

/* footer */

.footer {
  margin-top: 80px;
  padding: 40px 20px;

  background: white;
  border-top: 1px solid #eee;

  text-align: center;
}

.social-icons {
  margin-bottom: 20px;
}

.social-icons a {
  margin: 0 10px;
  font-size: 20px;
  color: #333;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #777;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;

  margin-bottom: 20px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.footer-links a:hover {
  color: #777;
}

.copyright {
  font-size: 13px;
  color: #888;
}

.copyright span {
  font-weight: 500;
}

/*
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

footer{
    background-color: #fff;
}

.footerNav {
    list-style: none;
}

.footerContainer{
    width: 100%;
    padding: 70px 30px 20px;
}

.socialIcons{
    display: flex;
    justify-content: center;
}

.socialIcons a{
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}

.socialIcons a i{
    font-size: 2em;
    color: black;
    opacity: 0,9;
}

.socialIcons a:hover{
    background-color: #111;
    transition: 0.5s;
}

.socialIcons a:hover i{
    color: white;
    transition: 0.5s;
}

.footerNav{
    margin: 30px 0;
}

.footerNav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
}

.footerNav ul li a{
    color: rgb(179, 176, 176);
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;
}

.footerNav ul li a:hover{
    opacity: 1;
}

.footerBottom{
    background-color: #fff;
    padding: 20px;
    text-align: center;
    text-decoration: none;
}

.footerBottom p{
    color: black;
    
}

.designer{
    opacity: 0.7;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}

*/

@media (max-width: 700px){
    .footerNav ul{
        flex-direction: column;
    }

    .footerNav ul li{
        width: 100%;
        text-align: center;
        margin: 10px;
    }

    .socialIcons a{
        padding: 8px;
        margin: 4px;
    }
}



