/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Styling */
header {
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    display:flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Styling */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ff6f61;
}

/* Navigation Styling */
nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-family: "Eagle Lake", serif;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #FE0000;
}
.nav-links li a.active {
    color: #FE0000; /* Highlight color */
    font-weight: bold;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.5rem;
    margin-left: 1rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: #1a1a1a;
        width: 200px;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section Styling */
#hero {
    width: 100%;
    height: 600px; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url('../images/aabbg.jpg') no-repeat center center/cover; /* Background image settings */
    position: relative;
    color: #FE0000; /* White text for contrast */
    text-align: center; /* Center text */
}

/* Hero Container */
.hero-container h1 {
    font-family: "Eagle Lake", serif;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Adds text shadow for readability */
    margin: 0;
    padding: 0 1rem; /* Adds padding for smaller screens */
}

/* Responsive Design */
@media (max-width: 768px) {
    #hero {
        height: 50vh; /* Adjust height for smaller screens */
    }

    .hero-container h1 {
        font-size: 2rem; /* Reduce font size for smaller screens */
    }
}

/* Section Styling */
#about {
    padding: 2rem 1rem;
    background: #000000;
    display: flex;
    justify-content: center;
}
.about-container{
    
    width: 90%;

}

#about h3 {
    text-align: center;
    font-size: 24px;
    font-family: "Eagle Lake", serif;
    color: #FE0000;
    margin-bottom: 1.5rem;
}

/* About Content Layout */
.about-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* Enables wrapping for mobile views */
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

/* Text Section */
.about-text {
    flex: 1;
    font-family: "Eagle Lake", serif;
    text-align: center;
    min-width: 280px;
   
    color: #ffffff;
    line-height: 1.6;
    font-size: 18px;
}
/* Image Section */
.about-image {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}









.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Optional: Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Adds depth */
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column; /* Stacks content vertically */
        text-align: center; /* Centers the text on smaller screens */
    }

    .about-image img {
        max-width: 90%; /* Reduces image size for smaller screens */
        margin-bottom: 1rem; /* Adds spacing below the image */
    }

    .about-text {
        font-size: 0.9rem; /* Adjusts text size for smaller screens */
    }
}


/* Footer General Styling */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 0;
    font-family: "Eagle Lake", serif;
}

/* Footer Content Layout */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin: auto 20px;
}

.footer-content h3{
    color:#FE0000;
    padding: 5px;
}
/* About Section */
.footer-about p {
    color: #ccc;
    line-height: 1.6;
}
.footer-about{
    width:300px;
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #fbfbfb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #FE0000;
}

/* Contact Section */
.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #FE0000;
}

/* Social Media */
.footer-social .social-icons a {
    display: inline-block;
    margin-right: 0.5rem;
}

.footer-social .social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.footer-social .social-icons img:hover {
    transform: scale(1.1);
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}
.footer-bottom a {
    color: rgb(248, 252, 0); 
    text-decoration: none;
}
.footer-bottom a:hover {
    color: rgb(255, 255, 255);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #1EBE5D;
    color: #fff;
    transform: scale(1.1);
}

/* FontAwesome icon styling */
.whatsapp-float i {
    color: white;
}

@keyframes whatsapp-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.whatsapp-float {
    animation: whatsapp-bounce 2s infinite;
}