/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    background-color:rgb(221, 221, 221);
    color: #333;
}

/* Container */
.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Align items closer to the bottom */
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 220px; /* Increased height to fit larger logo */
}

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    height: 250px; /* Adjust header height to fit logo */
}

header .logo img {
    width: 250px; 
	margin-bottom: -25px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li .btn-nav {
    background-color: #000000;
    color: #DAD1BB;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: normal;
	text-transform: uppercase;
}

nav ul li .btn-nav:hover {
    background-color: #444;
}

/* Hero Section */
.hero {
    background: url('../images/nebolatte.jpg') no-repeat center center/cover;
    background-size: cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5em;
}

.btn-hero {
    display: inline-block;
    background-color: #463624; 
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn-hero:hover {
    background-color: #564737; /* Slightly darker hover effect */
}

/* Section Styling */
section {
    padding: 40px;
    text-align: center;
    background-color: rgb(240, 240, 240);
    margin: 20px 0;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}
p {
	max-width: 900px;
	margin: 0 auto;
	margin-bottom: 30px;
}
ul {
	max-width: 700px;
	margin: 0 auto;
	text-align: left;
}
li {
	
	margin-bottom: 10px;
}
.btn {
	display: inline-block;
    background-color: #000; 
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.btn:hover {
    background-color: #444; /* Slightly darker hover effect */
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}
