/* Base styles */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Navbar styles */
.navbar {
    background-color: transparent;
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}

.navbar .nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.navbar .nav-menu a:hover {
    color: #d1a784;
}

/* Hero section styles */
.hero-section {
    background-image: url('https://austrian.coffee/hero3.jpg'); /* Using the provided image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    margin: 0 10px;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #6b4f2c;
    color: #fff;
}

.btn-primary:hover {
    background-color: #503a21;
}

.btn-secondary {
    background-color: #fff;
    color: #6b4f2c;
}

.btn-secondary:hover {
    background-color: #d1a784;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .cta-buttons .btn {
        font-size: 16px;
        padding: 10px 20px;
    }

    .navbar .nav-menu {
        flex-direction: column;
        align-items: center;
    }
}
.hero-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.cta-buttons .btn {
    margin: 0 15px; /* Adds space between the buttons */
    padding: 15px 30px;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust the opacity as needed */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}
/* Adjusting Navbar Padding */
.navbar .container {
    padding: 0 40px; /* Adds space on the left and right */
}

/* Adjusting Hero Section Container Padding */
.hero-section .container {
    padding: 0 40px; /* Adds space on the left and right */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
