/* General Styles */
body {
  margin: 0;
  font-family: 'argin', sans-serif;
  line-height: 1.6;
  background: #f4f4f9;
  color: #333;
  scroll-behavior: smooth;
}

/* Hero Section */
header {
  background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
  background: goldenrod
  center/ cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

header .hero h1 {
  font-size: 3.5rem;
  margin: 0;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

header .hero p {
  font-size: 1.5rem;
  margin: 15px 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

header .btn {
  margin-top: 20px;
  padding: 10px 20px;
  color: #fff;
  background: #cc3300;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

header .btn:hover {
  background: #a02b00;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: chocolate;
  color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.nav-container .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

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

.nav-links li {
  margin: 0 10px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: f4f4f9;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #ff6f61;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* Section Styles */
section {
  padding: 50px 20px;
  background: burlywood;
}

.parallax {
  background: url('https://via.placeholder.com/1920x1080') no-repeat fixed center/cover;
  
  color: #fff;
  background: wheat;
  text-align: center;
  padding: 100px 20px;
}

.parallax .content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.parallax .content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.parallax .btn {
  padding: 10px 20px;
  color: #fff;
  background: #cc3300;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
}

.parallax .btn:hover {
  background: #a02b00;
}

/* Values Section */
#values .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.value {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.value i {
  font-size: 2rem;
  color: #ff6f61;
  margin-bottom: 10px;
}

.value h3 {
  margin-bottom: 10px;
}

/* Contact Section */
#contact {
  background: chocolate;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

#contact h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: goldenrod;
}

#contact form {
  max-width: 600px;
  margin: 0 auto;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

#contact button {
  padding: 15px 20px;
  color: #fff;
  background: goldenrod;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contact button:hover {
  background: goldenrod;
}

/* Footer */
footer {
  background: orange;
  color: chocolate;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}










/* Gallery Section */
.gallery {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.gallery-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: chocolate;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}



/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox-content {
    position: relative;
}

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

.lightbox .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}







/* Social Media Section */
.social-media {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
}

.social-media h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    display: inline-block;
    font-size: 2.5rem;
    color: #333;
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: #007bff; /* Adjust hover color */
    transform: scale(1.2);
}





h2 {
   color: chocolate;
}











/* About Us Section */
.about-me {
    position: relative;
    background-image: url('about-background.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for better text readability */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
}

.about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-us p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-us h2 {
        font-size: 2rem;
    }

    .about-us p {
        font-size: 1rem;
    }
}
