/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #2c3e50;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Navigation Bar */
.navbar {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.8em;
    font-weight: 800;
    color: #333;
    display: inline-block;
}

.navbar-menu {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
}

.navbar-menu li {
    display: inline;
    margin-left: 30px;
}

.navbar-menu a {
    text-decoration: none;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: #d35400;
}

/* Hero Section */
.hero-section {
    background-color: #d35400;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 30px;
}

.btn-primary {
    text-decoration: none;
    padding: 12px 30px;
    background-color: #fff;
    color: #d35400;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
    background-color: #c0392b;
    color: #fff;
}

/* Section Styles */
section {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 20px;
}

p {
    font-size: 1.1em;
    font-weight: 300;
    margin-bottom: 30px;
}

/* Coffee Section */
.coffee-item {
    background-color: #fff;
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.coffee-item:hover {
    transform: translateY(-5px);
}

/* Testimonials Section */
.testimonials-section blockquote {
    font-size: 1.2em;
    font-style: italic;
    color: #555;
    margin: 20px 0;
    border-left: 5px solid #d35400;
    padding-left: 15px;
    position: relative;
}

.testimonials-section blockquote span {
    display: block;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}

/* Footer Section */
.footer-section {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}
