/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    /* Unsplash image link for a scenic Bangladesh landscape */
    background: url('https://unsplash.com') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
}

/* Dark overlay for text readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b132b; /* rgba(0, 0, 0, 0.4);*/
}

/* Content Styling */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.3rem;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 7px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Layout Styling */
.btn-container {
    padding-top: 50px;	
    display: flex;
    justify-content: center;
    gap: 30px; /* Creates the space between the buttons */
    flex-wrap: wrap; /* Keeps buttons stacked neatly on very small mobile screens */
}

/* Call to Explore Button */
.exp-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #046A38; /* National flag green */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.exp-button:hover {
    background-color: #F42A41; /* National flag red */
    transform: translateY(-2px);
}


/* Call to Order Button */
.ord-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #F42A41; /* National flag green */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.ord-button:hover {
    background-color: #046A38; /* National flag red */
    transform: translateY(-2px);
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        padding-top: 25px;
	padding-bottom: 15px;
	font-weight: 800;
	font-size: 1.83rem;
    }
    .hero-content p {
        font-size: 1.3rem;
    	max-width: 300px;
    }
    .btn-container {
   	padding-top: 150px;
	gap: 20px;
    }
}

