*{
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;
}
/*header*/
header {
  background-color: #070e16;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  height: 60px;
  margin-left: 50px;
}

/* Default Navigation */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  display: inline-block;
  margin-right: 15px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ff0000;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  background: transparent;
  border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-right: -270px;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #070e16;
    width: 200px;
    border-radius: 5px;
    padding: 10px 0;
  }

  nav ul li {
    display: block;
    text-align: center;
    margin: 10px 0;
  }

  nav ul li a {
    display: block;
    padding: 10px;
  }

  /* Show menu when active */
  nav ul.active {
    display: flex;
  }
}

/*hero*/
.hero {
  background-image: url("project14.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: #fff;
  padding: 20px;
}

.hero-content {
  max-width: 600px;
  width: 100%;
  padding: 20px;
  margin-left: 4%;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 48px); /* Scales dynamically */
  margin-bottom: 20px;
}

.hero-content p {
  font-size: clamp(16px, 3vw, 24px); /* Scales dynamically */
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #ff0000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e60000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 50px 20px;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 18px;
  }
}
/* about */
.about {
  display: flex;
  align-items: center;
  padding: 80px 0;
  flex-wrap: wrap; /* Para mag-adjust sa mas maliit na screen */
}

.about-content {
  flex: 1;
  max-width: 600px;
  padding-right: 50px;
  color: #fff;
  margin-left: 5%;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
  margin-bottom: 20px;
}

.about-image {
  max-width: 25%; /* Mas maliit na default size */
  margin-right: 5%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.dark-theme {
  background-color: #070e16;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .about {
    flex-direction: column; /* Stack content vertically */
    text-align: center;
    padding: 50px 20px;
  }

  .about-content {
    max-width: 100%;
    padding-right: 0;
    margin-left: 0;
  }

  .about-image {
    max-width: 55%; /* Mas malaking image para sa tablet */
    margin: 20px auto;
  }
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 28px;
  }

  .about p {
    font-size: 16px;
  }

  .about-image {
    max-width: 55%; /* Mas malaking image para sa mobile */
  }
}

@media (max-width: 480px) {
  .about h2 {
    font-size: 24px;
  }

  .about p {
    font-size: 14px;
  }

  .about-image {
    max-width: 40%; /* Full width para sa maliit na screen */
  }
}



/* Work Section */
.work {
  text-align: center;
  padding: 60px 5%;
  background-color: #070e16;
  color: #fff;
}

.work h2 {
  font-size: 36px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Grid Layout for Menu Items */
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;
}

/* Individual Art Item */
.menu-item {
  background: #0d1622;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.menu-item:hover {
  transform: scale(1.05);
}

/* Image Styling */
.menu-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out;
}

.menu-item img:hover {
  transform: scale(1.1);
}

/* Text Styling */
.menu-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ffcc00;
}

.menu-item p {
  font-size: 16px;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .work {
    padding: 50px 8%;
  }

  .menu-items {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .work h2 {
    font-size: 28px;
  }

  .menu-item h3 {
    font-size: 20px;
  }

  .menu-item p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .work {
    padding: 40px 5%;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .menu-item h3 {
    font-size: 18px;
  }

  .menu-item p {
    font-size: 14px;
  }
}

/* Reservation Section */
.reservations {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 5%;
  background-color: #070e16;
  color: #fff;
}

/* Form Container */
.reservation-form {
  width: 100%;
  max-width: 500px;
  background: #0d1622;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.reservation-form h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffcc00;
}

/* Form Inputs */
.reservation-form form {
  display: flex;
  flex-direction: column;
}

.reservation-form input,
.reservation-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #555;
  border-radius: 5px;
  background: #1a2332;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.reservation-form input:focus,
.reservation-form textarea:focus {
  border-color: #ffcc00;
  outline: none;
}

/* Submit Button */
.reservation-form button {
  padding: 12px;
  background: #ffcc00;
  color: #070e16;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.reservation-form button:hover {
  background: #e6b800;
}

/* Responsive Design */
@media (max-width: 768px) {
  .reservations {
    padding: 40px 8%;
  }

  .reservation-form {
    padding: 25px;
  }

  .reservation-form h2 {
    font-size: 24px;
  }

  .reservation-form input,
  .reservation-form textarea {
    font-size: 14px;
  }

  .reservation-form button {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .reservations {
    padding: 30px 5%;
  }

  .reservation-form {
    padding: 20px;
  }

  .reservation-form h2 {
    font-size: 22px;
  }

  .reservation-form input,
  .reservation-form textarea {
    font-size: 14px;
    padding: 10px;
  }

  .reservation-form button {
    font-size: 16px;
    padding: 10px;
  }
}

/* Testimonials Section */
.testimonials {
  text-align: center;
  padding: 60px 5%;
  background-color: #070e16;
  color: #fff;
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffcc00;
}

/* Testimonial Container */
.testimonial {
  max-width: 600px;
  background: #0d1622;
  padding: 20px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.testimonial:hover {
  transform: scale(1.05);
}

/* Customer Image */
.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #ffcc00;
}

/* Testimonial Text */
.testimonial p {
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Customer Name */
.testimonial h4 {
  font-size: 20px;
  font-weight: bold;
  color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials {
    padding: 40px 8%;
  }

  .testimonials h2 {
    font-size: 28px;
  }

  .testimonial p {
    font-size: 16px;
  }

  .testimonial h4 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 30px 5%;
  }

  .testimonials h2 {
    font-size: 24px;
  }

  .testimonial {
    padding: 15px;
  }

  .testimonial p {
    font-size: 14px;
  }

  .testimonial h4 {
    font-size: 16px;
  }

  .testimonial img {
    width: 70px;
    height: 70px;
  }
}


/* Gallery Section */
.gallery {
  text-align: center;
  padding: 60px 5%;
  background-color: #070e16;
  color: #fff;
}

.gallery h2 {
  font-size: 36px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffcc00;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 10px;
}

/* Image Item */
.image-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effects */
.image-item:hover img {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gallery {
    padding: 50px 8%;
  }

  .gallery h2 {
    font-size: 32px;
  }

  .image-grid {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .gallery {
    padding: 40px 5%;
  }

  .gallery h2 {
    font-size: 28px;
  }

  .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .gallery {
    padding: 30px 5%;
  }

  .gallery h2 {
    font-size: 24px;
  }

  .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 5px;
  }
}


/* Contact Section */
.contact {
  background-color: #070e16;
  color: #fff;
  text-align: center;
  padding: 40px 5%;
}

.contact-container {
  max-width: 500px; /* Limit width for better centering */
  margin: auto;
}

/* Heading */
.contact h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffcc00;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  background: #0d1622;
  padding: 10px 15px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  justify-content: center;
}

.info-item i {
  font-size: 18px;
  color: #ffcc00;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #ffcc00;
  border-radius: 6px;
  background: #0d1622;
  color: #fff;
  font-size: 14px;
}

/* Placeholder Text */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

/* Submit Button */
.contact-form button {
  background: #ffcc00;
  color: #000;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.contact-form button:hover {
  background: #e6b800;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .contact {
    padding: 30px 5%;
  }

  .contact h2 {
    font-size: 24px;
  }

  .info-item {
    padding: 8px 10px;
    font-size: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 8px;
    font-size: 12px;
  }

  .contact-form button {
    font-size: 14px;
    padding: 8px;
  }
}

/* Footer Styles */
.footer {
  background-color: #070e16;
  color: #fff;
  text-align: center;
  padding: 30px 5%;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Footer Logo */
.footer-logo img {
  max-width: 120px;
  height: auto;
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-links a {
  color: #ffcc00;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
  color: #e6b800;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #ffcc00;
  font-size: 20px;
  transition: color 0.3s ease-in-out;
}

.footer-social a:hover {
  color: #e6b800;
}

/* Footer Text */
.footer-text {
  font-size: 14px;
  margin-top: 15px;
  color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-social a {
    font-size: 18px;
  }

  .footer-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 5%;
  }

  .footer-logo img {
    max-width: 100px;
  }

  .footer-links {
    gap: 8px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-social {
    gap: 10px;
  }

  .footer-social a {
    font-size: 16px;
  }

  .footer-text {
    font-size: 10px;
  }
}
