* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, gray, #312e2e, gray); /* Added background gradient */
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}
h1, h2 {
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    color: #000;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff1a1a;
}

p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
header {
    width: 100%;
  }
  
  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
  }
  
  #main-nav.scrolled {
    background-color: black;
  }
  
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  #main-nav .logo {
    height: 40px;
  }
  .privacy-notice {
    background-color: #f0f8ff; /* Light blue background */
    border-left: 5px solid #007BFF; /* Blue vertical bar */
    color: #003366; /* Dark blue text */
    padding: 12px 16px;
    margin: 15px 0;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Optional: add a small info icon before the text */
.privacy-notice::before {
    content: "ℹ️"; /* info icon */
    margin-right: 8px;
    font-weight: normal;
}

.container {
    display: flex;
    align-items: center; /* Center vertically */
    height: 100vh; /* Full viewport height */
}

.form-container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 60%;
    align-items: center;
    background: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    margin: auto;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 1.5cm;
    
}

.form-container form {
    display: flex;
    flex-direction: column; /* Stack fields vertically */
    width: 100%;
    gap: 15px;
}

.form-container input, 
.form-container textarea {
    width: 100%;
    padding: 10px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container button {
    width: 100%;
    background: red;
    color: white;
    padding: 10px;
    border: none;
    height: 15%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 200;
    transition: background 0.3s;
}

.form-container button:hover {
    background: rgb(156, 48, 48);
}

.products {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    animation: moveLeftToRight 5s ease-in-out infinite; /* Add animation here */
}
.product-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

/* Footer Section */
.footer {
    background: #000000;
    color: #dbe7ff;
    padding: 30px 5% 20px; /* Lait ng padding */
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* mas maliit na min size */
    gap: 20px; /* Bawasan gap */
    max-width: 1200px;
    margin: auto;
  }
  
  .footer h3 {
    font-size: 1rem; /* Mas maliit font-size */
    color: #ffffff;
    margin-bottom: 10px; /* Bawas spacing */
  }
  
  .footer-brand img {
    max-width: 100px; /* Mas maliit logo */
    margin-bottom: 10px; /* Bawas margin */
  }
  
  .footer-brand p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #ffffff;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 5px 0; /* Bawas margin */
    font-size: 0.9rem;
  }
  
  .footer-contact li {
    font-size: 0.9rem;
    margin-bottom: 6px; /* Bawas spacing */
  }
  
  .footer-contact i {
    margin-right: 6px;
  }
  
  .footer-social .social-icons a {
    font-size: 1.1rem;
    margin-right: 10px;
  }
  
  .footer-bottom {
    border-top: 1px solid #ffffff;
    text-align: center;
    margin-top: 20px; /* Bawas margin-top */
    padding-top: 10px; /* Bawas padding-top */
    font-size: 0.8rem;
  }

  .footer-bottom p{
    color: #ffffff;
    z-index: 9999;

  }

@media (max-width: 540px) and (orientation: portrait) {
 
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'bahnschrift', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, black, #312e2e, black); /* Added background gradient */
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}
h1, h2 {
    font-weight: 600;
}

h1 {
    font-size: 1.25rem;
    color: #000;
}

h2 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #ff1a1a;
}

p {
    font-size: .6rem;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
header {
    width: 100%;
  }
  
  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    font-size: 7px;
    text-transform: uppercase;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
  }
  
  #main-nav.scrolled {
    background-color: black;
  }
  
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  #main-nav .logo {
    height: 20px;
  }
.container {
    display: flex;
    align-items: center; /* Center vertically */
    height: 100vh; /* Full viewport height */
}

.form-container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 80%;
    align-items: center;
    background: transparent;
    width: 90%;
    margin-top: 70px;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 1.5cm;
    
}

.form-container form {
    display: flex;
    flex-direction: column; /* Stack fields vertically */
    width: 100%;
    gap: 7.5px;
}

.form-container input, 
.form-container textarea {
    width: 100%;
    padding: 5px;
    height: auto;
    border: 0.5px solid #ccc;
    border-radius: 2.5px;
}

.form-container button {
    width: 100%;
    background: red;
    color: white;
    padding: 5px;
    border: none;
    height: 15%;
    border-radius: 2.5px;
    cursor: pointer;
    font-size: 0.5rem;
    font-weight: 200;
    transition: background 0.3s;
}

.form-container button:hover {
    background: rgb(156, 48, 48);
}

/* Footer Section */
.footer {
    background: #000000;
    color: #dbe7ff;
    padding: 15px 2.5% 10px; 
    font-family: 'bahnschrift', sans-serif;
    width: 100%;
    align-items: center;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 10px; 
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .footer h3 {
    font-size: 0.5rem; 
    color: #ffffff;
    margin-bottom: 5px;
    text-align: center;
   }
  
  .footer-brand img {
    max-width: 100px; 
    margin-bottom: 5px;
    text-align: center;
   }
  
  .footer-brand p {
  font-size: 0.43rem;
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
  width: 50%;
  margin: 0 auto;
}

  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 2.5px 0; 
    font-size: 0.45rem;
  }

  .footer-links{ 
    display: none;
  }
  
  .footer-contact li {
    font-size: 0.45rem;
    margin-bottom: 1.5px;
    text-align: center;
  }
  
  .footer-contact i {
    margin-right: 3px;
    text-align: center;
  }
  
  .footer-social .social-icons a {
    font-size: .55rem;
    margin-right: 5px;
    text-align: center;
  }
  
  .footer-bottom {
    border-top: 0.5px solid #ffffff;
    text-align: center;
    margin-top: 10px; 
    padding-top: 5px; 
    font-size: 0.4rem;
  }
}

.footer-bottom p {
  z-index: 9999;
  color: #ffffff;
}


@media (max-width: 932px) and (orientation: landscape) {
 

  .footer-bottom p{
  z-index: 9999;
}
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'bahnschrift', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, black, #312e2e, black); /* Added background gradient */
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}
h1, h2 {
    font-weight: 600;
}

h1 {
    font-size: 1.25rem;
    color: #000;
}

h2 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #ff1a1a;
}

p {
    font-size: .6rem;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
header {
    width: 100%;
  }
  
  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    font-size: 7px;
    text-transform: uppercase;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
  }
  
  #main-nav.scrolled {
    background-color: black;
  }
  
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  #main-nav .logo {
    height: 20px;
  }
.container {
    display: flex;
    align-items: center; /* Center vertically */
    height: 100vh; /* Full viewport height */
}

.form-container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 80%;
    align-items: center;
    background: transparent;
    width: 90%;
    margin-top: 70px;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 1.5cm;
    
}

.form-container form {
    display: flex;
    flex-direction: column; /* Stack fields vertically */
    width: 100%;
    gap: 7.5px;
}

.form-container input, 
.form-container textarea {
    width: 100%;
    padding: 5px;
    height: auto;
    border: 0.5px solid #ccc;
    border-radius: 2.5px;
}

.form-container button {
    width: 100%;
    background: red;
    color: white;
    padding: 5px;
    border: none;
    height: 15%;
    border-radius: 2.5px;
    cursor: pointer;
    font-size: 0.5rem;
    font-weight: 200;
    transition: background 0.3s;
}

.form-container button:hover {
    background: rgb(156, 48, 48);
}

/* Footer Section */
.footer {
    background: #000000;
    color: #dbe7ff;
    padding: 15px 2.5% 10px; 
    font-family: 'bahnschrift', sans-serif;
    width: 100%;
    align-items: center;
    margin-top: 70px;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 10px; 
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .footer h3 {
    font-size: 0.5rem; 
    color: #ffffff;
    margin-bottom: 5px;
    text-align: center;
   }
  
  .footer-brand img {
    max-width: 100px; 
    margin-bottom: 5px;
    text-align: center;
   }
  
  .footer-brand p {
  font-size: 0.43rem;
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
  width: 50%;
  margin: 0 auto;
}

  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 2.5px 0; 
    font-size: 0.45rem;
  }

  .footer-links{ 
    display: none;
  }
  
  .footer-contact li {
    font-size: 0.45rem;
    margin-bottom: 1.5px;
    text-align: center;
  }
  
  .footer-contact i {
    margin-right: 3px;
    text-align: center;
  }
  
  .footer-social .social-icons a {
    font-size: .55rem;
    margin-right: 5px;
    text-align: center;
  }
  
  .footer-bottom {
    border-top: 0.5px solid #ffffff;
    text-align: center;
    margin-top: 10px; 
    padding-top: 5px; 
    font-size: 0.4rem;
  }
}

@media (max-width: 1024px){

  html,body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, black, #312e2e, black); /* Added background gradient */
  }

  .form-container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 80%;
    align-items: center;
    background: transparent;
    width: 90%;
    margin-top: 70px;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 1.5cm;
    color: white;
    
}

.form-container form {
    display: flex;
    flex-direction: column; /* Stack fields vertically */
    width: 100%;
    gap: 7.5px;
}

.form-container input, 
.form-container textarea {
    width: 100%;
    padding: 5px;
    height: auto;
    border: 0.5px solid #ccc;
    border-radius: 2.5px;
}

.form-container button {
    width: 100%;
    background: red;
    color: white;
    padding: 5px;
    border: none;
    height: 15%;
    border-radius: 2.5px;
    cursor: pointer;
    font-size: 0.5rem;
    font-weight: 200;
    transition: background 0.3s;
}

.form-container button:hover {
    background: rgb(156, 48, 48);
}
}

