@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    height: 60px;
    background: #2d3436;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav a {
    color:white;
    margin-left: 20px;
    text-decoration: none;
}
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("images/hero3.png");
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    color: white;
    margin-top: 61px;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}
.hero h2 {
    font-size: 50px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);    
}
.hero p {
    color: white;
    font-size: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.hero h2,
.hero p {
    background: rgba(0,0,0,0);
    padding: 10px;
    border-radius: 5px;
}
.hero h2,
.hero p,
.hero button {
    position: relative;
    z-index: 1;
}
button{
    padding: 12px 25px;
    background: #ff4d4d;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 6px;
    transition: 0.3s;
}
button:hover{
    background: #e63939;
    transform: scale(1.05);
}

.menu {
    padding: 50px 20px;
    text-align: center;
}
.menu h2 {
    font-size: 36px;
    margin-bottom: 30px;
}
.menu-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.card {
    background:#fff ;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.card img {
    width: 100%;
    border-radius: 10px;
}
.card h3 {
    margin: 15px 0 5px;
}
.card p {
    color: #ff4d4d;
    font-weight: bold;
    margin-bottom: 10px;
}
.card button {
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.card button:hover {
    background: #e63939;
}

.about {
    padding: 10px 20px;
    background: #f9f9f9;
}
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}
.about-image img {
    width: 400px;
    border-radius: 10px;
}
.about-text {
    max-width: 500px;
}
.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
}

.footer {
    background: #2d3436;
    color: white;
    height: 200px;
    padding: 10px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
    gap: 40px;
}
.footer-box {
    flex: 1;
}
.footer-box h3 {
    margin-bottom: 15px;
}
.footer-box p {
    margin-bottom: 0px;
    margin-top: 0px;
    font-size: 14px;
}
.copyright {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

html {
    scroll-behavior: smooth;
}

section {
    padding-top: 80px;
}
h2 {
    font-weight: 600;
}

/* For Responsiveness */
@media (max-width: 768px) {
    .menu-container{
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .about-container{
        flex-direction: column;
        text-align: center;
    }
    .about-image img {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width:768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}