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

/* Body with dark palette option C */
body {
  line-height: 1.6;
  color: #EDEDED;
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(30deg, #0D1B2A, #1B263B, #415A77, #1A2421);
  background-attachment: fixed;
  padding-top: 90px; /* prevent content from being hidden behind header */
}

/* Header */
header {
  background-color: transparent;
  color: #EDEDED;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-radius: 0;
  margin: 0;

  /* 🔽 Sticky + transition effects */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  /* 🔽 Smooth transitions for movement + fade + color */
  transition:
    top 0.4s ease,
    opacity 0.6s ease,
    background-color 0.6s ease,
    box-shadow 0.6s ease;
}

/* 🔽 When scrolling down — hide header (transparent fade out) */
header.hide {
  top: -100px;
  opacity: 0;
  background-color: transparent !important; /* ensure it fades out clear */
}

/* 🔽 When scrolling past top — background fades in smoothly */
header.scrolled {
  background-color: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}



/* Mobile view: shrink header height */
@media (max-width: 600px) {
  header {
    padding: 10px 15px;  /* less padding for smaller height */
  }

  header h1 {
    font-size: 1.2rem; /* smaller title text */
  }

  nav ul li a {
    font-size: 0.9rem; /* smaller nav links */
  }
}


.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Default header title (desktop / full page) */
header h1 {
  font-size: 1.3rem;  /* smaller than your original 1.6rem */
  font-family: 'Montserrat', sans-serif;
}

/* Mobile view */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.1rem;  /* shrink more on mobile */
  }
}

.logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* Navbar */
nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  transition: color 0.3s, text-shadow 0.3s;
}

nav ul li a:hover {
  color: #E9C46A;
  text-shadow: 0 0 8px rgba(233, 196, 106, 1); /* full opaque glow */
}


/* Hamburger (hidden by default) */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
}

/* Mobile view */
@media (max-width: 768px) {
  nav {
    display: none; /* hide nav by default */
    position: absolute;
    top: 70px;       /* drop below header */
    right: 20px;     /* align right */
    width: auto;     /* shrink to fit content */
    z-index: 1000; /* ensure header and nav always on top */
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    background: #1A2421;
    padding: 20px;
    border-radius: 10px;
  }

  nav.show {
    display: block; /* show when toggled */
  }

  /* Hamburger button shows before expand */
  .hamburger {
    display: block;
  }

  /* Hide hamburger when menu expanded */
  nav.show ~ .hamburger {
    display: none;
  }
}

/* Make body take full height */
html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Let main content grow */
.container {
  flex: 1;  /* pushes footer down */
  width: 85%;
  margin: 30px auto;
}

/* Hero Section */
.hero {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap; /* makes it stack nicely on small screens */
}

.hero-image img {
  width: 100%;      /* takes full width of its container */
  height: auto;     /* keeps natural aspect ratio */
  max-width: 300px; /* upper limit for desktop */
  border-radius: 0px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    /* Frame with thicker bottom border */
  border-top: 10px solid #fffdfd;
  border-left: 10px solid #fffdfd;
  border-right: 10px solid #fffdfd;
  border-bottom: 40px solid #fffdfd; /* thicker bottom */
  transition: transform 0.4s ease;
}
.hero-image img:hover {
  transform: scale(1.05);
}

/* Responsive adjustment for smaller screens */
@media (max-width: 600px) {
  .hero-image {
    display: flex;
    justify-content: center; /* center only on mobile */
    width: 100%;
  }

  .hero-image img {
    max-width: 50%;   /* shrink further on mobile */
    border-top: 5px solid #fffdfd;
    border-left: 5px solid #fffdfd;
    border-right: 5px solid #fffdfd;
    border-bottom: 20px solid #fffdfd; /* thicker bottom */
  }

  .hero-text {
    max-width: 80%;   /* allow text to use more space */
    text-align: center; /* center-align text for better mobile look */
    margin: 0 auto;     /* ensure proper centering */
  }
}


.hero-text {
  max-width: 500px;
  color: #EDEDED;
  font-family: 'Montserrat', sans-serif;
}

.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2A9D8F;
}

.hero-text p {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
}

.section-title {
  margin-bottom: 20px;
  font-size: 1.8rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
}

/* Masonry layout */
.photos img {
  width: calc((100% - 40px) / 3); /* max 3 per row */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  object-fit: cover;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.photos img:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .photos img {
    width: calc((100% - 20px) / 2); /* 2 image per row */
    height: auto; /* keep natural aspect ratio */
    margin-bottom: 7px;
  }
}

.wide-img {
  position: relative;
  width: 100%;
  height: 400px; /* adjust height as needed */
  background: url('photos/image1.JPG') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 200px;
}

.wide-text {
  background: rgba(0, 0, 0, 0.5); /* semi-transparent background for readability */
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
}

    /* Responsive video container */
    .videos {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .videos iframe {
      width: 560px;
      height: 315px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    /* Smaller screen (tablet & mobile) */
    @media (max-width: 900px) {
      .videos iframe {
        width: 100%;
        height: 250px;
      }
    }

    @media (max-width: 600px) {
      .videos iframe {
        width: 100%;
        height: 220px;
      }
    }

/* Contact Section */
.contact-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 20px 60px;
  margin-top: -40px;
 
  /* 🔽 New background styling */
  background-image: url('photos/image5.jpg'); /* change to your actual path */
  background-size: 60%;          /* make it fill the section */
  background-position: center;     /* center the image */
  background-repeat: no-repeat;    /* prevent tiling */
  position: relative;
  z-index: 1;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
  position: relative;
  z-index: 2; /* keeps it above overlay */
}

.contact-image img {
  width: 280px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.contact-image img:hover {
  transform: scale(1.05);
}

.contact-details {
  max-width: 400px;
  color: #EDEDED;
  text-align: left;
}

.contact-details h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-details p {
  margin-bottom: 25px;
  color: #CFCFCF;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn i {
  margin-right: 10px;
  font-size: 1.2em;
  vertical-align: middle;
}


.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

/* Brand Colors */
.whatsapp { background: #25D366; }
.instagram { background: linear-gradient(45deg, #fd1d1d, #833ab4, #fcb045); }
.facebook { background: #1877F2; }
.telegram { background: #0088cc; }

/* Responsive */
@media (max-width: 768px) {

  .contact-section {
    align-items: flex-start; /* align to top instead of center */
    padding-top: 50px;      /* leave room for the fixed header */
    min-height: auto;        /* prevent full-screen vertical centering */
    background-size: cover;          /* make it fill the section */
  }
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-image img {
    width: 200px;
  }

  .social-buttons {
    align-items: center;
  }
}

/* Footer */
footer {
  background-color: transparent;
  color: #EDEDED;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-family: 'Open Sans', sans-serif;
}

footer p {
  margin: 0;
}

