body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;  /* Nicer font applied to the whole page */
    background-color: #ffffff;           /* Light yellow background */
}


        footer {
            background-color: #2600E9;
            padding: 10px 0;
            text-align: center;
        }
        footer a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-family: Arial, sans-serif;
            font-size: 1.1em;
            transition: color 0.3s;
        }
        footer a:hover {
            color: #FAF3E0;
        }

/* Header Styling */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;             /* Keep the header section white */
    padding-bottom: 10px;                 /* Adding padding for a neat look */
}

/* Logo Image Styling */
.header-image img {
    width: 1000px;
    height: auto;
    margin-top: 10px;
}

/* Navigation Menu Styling */
nav {
    margin-top: 10px;
    width: 70%;
    background-color: #2600E9;
    border-radius: 8px;
        border: 2px solid #000000;
}

nav ul {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 40px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    padding: 0 15px;
    font-size: 20px;                   /* Slightly larger text */
    font-weight: 500;                  /* Medium weight for better readability */
    font-family: 'Poppins', sans-serif; /* Applying the imported font */
    height: 100%;
    display: flex;
    align-items: center;               /* Center text vertically */
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: #d4d700;
}






/* Mobile Responsive Styling */
@media (max-width: 768px) {
    .carousel {
        width: 90%;
        height: 40vh;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li a {
        padding: 15px;
    }
}

/* Contact Form Styling */
.contact-form-section {
    width: 50%;
    margin: 50px auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    text-align: center;
    color: #2600E9;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Consistent spacing between all elements */
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 16px;
    color: #333;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 2px solid #d4d700;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff6b81;
}

.submit-button {
    padding: 10px 20px;
    background-color: #2600E9;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px; /* Space above button */
    align-self: center; /* Center the button */
    width: 150px; /* Fixed width looks better */
}

.submit-button:hover {
    background-color: #2600E9;
}

.merch {
  text-align: center;   
  font-size: 25px;      
font-family: Arial, sans-serif;
  color: blue;          
  margin: 20px auto;    /* Adds vertical space and centers the paragraph block */
  max-width: 1000px;     /* Optional: Limits width for better readability */
  line-height: 3;     /* Optional: Improves readability with spacing */
}

/* ===== MOBILE MENU STYLES ===== */
.navbar {
  background-color: #f9c94d;
  font-family: Arial, sans-serif;
  border-bottom: 2px solid #eee;
  position: relative;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.brand-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

.navbar-links ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar-links li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.toggle-button {
  display: none;
  font-size: 26px;
  cursor: pointer;
  background: none;
  border: none;
}

/* --- Responsive (Mobile) --- */
@media (max-width: 768px) {
  .toggle-button {
    display: block;
  }

 .navbar-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #f9c94d;
    position: absolute;
    top: 56px; /* height of navbar */
    width: 100%;
    left: 0;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .navbar-links ul {
    flex-direction: column;
    width: 100%;
  }

  .navbar-links.active {
    display: block;
  }

  .navbar-links ul li {
    padding: 10px 0;
    text-align: center;
  }
}
.signup-banner {
  width: 100%;
  background-color: #ffeef0;
  color: #333;
  text-align: center;
  padding: 16px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup-banner p {
  margin: 0;
  font-size: 16px;
}

.signup-banner a {
  color: #d6336c;
  text-decoration: underline;
  font-weight: bold;
  margin-left: 5px;
}

.signup-banner button {
  background: none;
  border: none;
  font-size: 20px;
  margin-left: 20px;
  cursor: pointer;
  color: #999;
}
 /* Footer Styles */
        .text-footer {
            background-color: #f8f8f8;
            color: #333;
            text-align: center;
            padding: 30px 20px;
            font-family: Verdana, sans-serif;
            border-top: 1px solid #eaeaea;
        }
        
        .footer-links {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #0066cc;
            text-decoration: none;
            margin: 0 15px;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #ff6b81;
            text-decoration: underline;
        }
        
        .copyright {
            font-size: 14px;
            color: #666;
        }
        
        /* Responsive adjustment */
        @media (max-width: 600px) {
            .footer-links a {
                display: block;
                margin: 10px 0;
            }
        }


.site-header {           /* keep header items stacked */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding-bottom: 10px;
}

/* hamburger button */
.menu-toggle{
  position: fixed;
  top: 20px; left: 20px;
  font-size: 28px;
  background: #2600E9;
  color:#fff;
  border:none;
  border-radius:4px;
  padding:6px 12px;
  cursor:pointer;
  z-index:1001;
}

/* side menu container */
.side-menu{
  position: fixed;
  top: 0;               /* flush with top of viewport */
  left: 0;
  width: 150px;
  height: 100vh;
  background: #2600E9;
  border-right: 2px solid #000;
  transform: translateX(-150px);   /* hidden by default */
  transition: transform .3s ease-in-out;
  z-index: 1000;
  padding-top: 120px;   /* space for logo / header */
}

.side-menu.active{      /* shown after hamburger click */
  transform: translateX(0);
}

.side-menu ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
}

.side-menu li{
  border-bottom:1px solid rgba(255,255,255,.15);
}

.side-menu a{
  display:block;
  padding:14px 20px;
  font-size:14px;
  font-weight:500;
  color:#fff;
  font-family:'Poppins',sans-serif;
  text-decoration:none;
  transition:background-color .3s;
}

.side-menu a:hover{
  background:#d4d700;
}

/* push main content to the right when the menu is permanent (desktop) */
@media (min-width: 1024px){
  .side-menu{           /* permanently visible on desktop */
    transform: translateX(0);
  }
  .menu-toggle{ display:none; }
  body{                  /* create space so content isn't hidden */
    margin-left:230px;
  }
}


