@font-face{font-family:'GAELA';src:url('GAELA.otf')format('opentype');font-weight:normal;font-style:normal;}
/* Banner styles */
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: auto;
}

/* Text styles */
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.banner-text h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  line-height: 1.2; /* Default line-height */
}

.banner-text p {
  font-size: 1.7rem;
  margin-top: 10px;
  line-height: 1.3;
}

/* Text shadow */
.banner-text h1,
.banner-text p {
  text-shadow: 5px 6px 6px rgba(0, 0, 0, 1);
}

/* Media queries for responsiveness */
@media (max-width: 1920px) {
  .banner-text h1 {
    font-size: 3rem;
    line-height: 1.2;
  }
  .banner-text p {
    font-size: 2rem;
  }
}

@media (max-width: 1366px) {
  .banner-text h1 {
    font-size: 2.8rem;
    line-height: 1.1; /* Tighter line-height for smaller screens */
  }
  .banner-text p {
    font-size: 1.8rem;
  }
}

@media (max-width: 1280px) {
  .banner-text h1 {
    font-size: 2.6rem;
    line-height: 1.1;
  }
  .banner-text p {
    font-size: 1.6rem;
  }
}

@media (max-width: 1024px) {
  .banner-text h1 {
    font-size: 2.4rem;
    line-height: 1.1;
  }
  .banner-text p {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .banner-text h1 {
    font-size: 2rem;
    margin-bottom: 5px;
    line-height: 1.1; /* Adjust line-height when h1 breaks */
  }
  .banner-text p {
    font-size: 1.5rem;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .banner-text h1 {
    font-size: 1.8rem;
    line-height: 1.1; /* Keep line-height tighter */
  }
  .banner-text p {
    font-size: 1.4rem;
  }
}

@media (max-width: 360px) {
  .banner-text h1 {
    font-size: 1.6rem;
    line-height: 1.1; /* Tighten further on very small screens */
  }
  .banner-text p {
    font-size: 1.3rem;
  }
}

@media (max-width: 320px) {
  .banner-text h1 {
    font-size: 1.5rem;
    line-height: 1.1;
  }
  .banner-text p {
    font-size: 1.2rem;
  }
}

@media (max-width: 280px) {
  .banner-text h1 {
    font-size: 1.4rem;
    line-height: 1.1;
  }
  .banner-text p {
    font-size: 1.1rem;
  }
}




		/* Container styles */
						.container-2 {
							display: flex;
							justify-content: center; /* Horizontally center */
							align-items: center; /* Vertically center */
							margin: 60px 0;
						}

						/* Image styles */
						.centered-image img {
							max-width: 100%;
							max-height: 100%;
							display: block;
							margin: 0 ; /* Horizontally center within the container */
						}







						.margin {
							margin-top: 150px !important;
						}
						@media only screen and (max-width: 720px) {
							.margin {
								margin-top: 0px !important;
							}
						}
					
						/* Blog container */
						.blog-container {
							display: flex;
							flex-wrap: wrap;
							align-items: center;
							margin: 0 auto;
						}

						/* Blog image */
						.blog-image {
							flex: 4;
							padding: 10px;
						}

						.blog-image img {
							max-width: 100%;
							height: auto;
							display: block;
						}

						/* Blog content */
						.blog-content {
							flex: 2;
							padding: 10px;
						}

						/* Responsive layout */
						@media (max-width: 768px) {
							.blog-container {
								flex-direction: column;
							}

							.blog-content, .blog-image {
								flex: 1;
							}
						}
					
						.margin-top
						{
							margin-top: 80px !important;
						}
						/* Responsive layout */
						@media (max-width: 768px) {
							.margin-top
							{
								margin-top: 0px !important;
							}
						}



          
            /* Main menu styles */
            ul.menu {
              display: flex;
            }
        
            ul.menu li {
              margin-right: 20px;
            }
        
            ul.menu li:last-child {
              margin-right: 0;
        
            }
        
            ul.menu li a {
              text-decoration: none;
            }
        
            /* Sub-menu styles (unchanged) */
            ul.sub-menu {
              list-style: none;
              padding: 0;
              position: absolute;
              display: none;
              background: #faf9f8;
        
        
            }
        
            ul.sub-menu li:last-child {
              margin-right: 0;
              border-bottom: none;
        
            }
        
            ul.menu li:hover ul.sub-menu {
              display: block;
            }
        
            ul.sub-menu li {
              padding: 0px;
            }
        
            ul.sub-menu li a {
              text-decoration: none;
              display: block;
              padding: 0 0 !important;
            }
        
            ul.sub-sub-menu {
              list-style: none;
              padding: 0;
              display: none;
              width: max-content;
              position: absolute;
              left: 90px;
              top: 10px;
              background: #faf9f8;
            }
        
            ul.sub-sub-menu li {
              padding: 0px;
            }
        
            ul.sub-sub-menu li a {
              color: #fff;
              text-decoration: none;
              display: block;
              padding: 0 0 !important;
            }
        
            ul.sub-menu li:hover ul.sub-sub-menu {
              display: block;
            }
        
        
        
            /* Mobile styles */
        
        
            @media (max-width: 768px) {
              ul.menu {
                flex-direction: column;
                z-index: 100;
              }
        
              ul.menu li {
                margin: 10px 0;
                border-bottom: 1px solid #e1e1e1;
              }
        
              ul.menu li a {
                display: block;
                color: #000;
                font-family: yana, serif;
                font-size: 1.063rem;
                font-weight: 700;
                letter-spacing: 1px;
                line-height: 1;
                padding: 14px 10px 9px;
                text-shadow: 2px 2px 2px #c2deef;
                text-transform: uppercase;
              }
        
              ul.menu li:hover ul.sub-menu {
                display: block;
                position: relative;
                width: 100%;
                background: #faf9f8 !important;
                border: none;
              }
        
              ul.sub-menu li:hover ul.sub-sub-menu {
                display: block;
                position: relative;
                width: 100%;
                background: #faf9f8 !important;
                border: none;
                left: 0;
              }
            }

.header-buttons {
  margin-left: 30px;
}


/* Button container */
.button-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}



/* Button styling */
button {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

/* Specific button styles */
.signup-btn {
  background-color: #007bff;
  color: white;
}

.signin-btn {
  background-color: #28a745;
  color: white;
}

/* Button hover effect */
button:hover {
  opacity: 0.8;
}

.btn-login {
  padding: 8px 16px;
  background-color: #DB0900; /* Bold primary color */
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px; /* Readable font size */
  font-weight: 600; /* Adds a professional touch */
  border: none; /* Removes default borders */
  cursor: pointer; /* Indicates a clickable button */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-login:hover {
  background-color: #C00000; /* Slightly darker red */
  transform: scale(1.05); /* Grows slightly on hover */
}

.btn-login:active {
  background-color: #A00000; /* Even darker for active click */
  transform: scale(0.98); /* Shrinks slightly for click feedback */
}


            
     
				