* {
    padding: 0;
    margin: 0;
}

body {
    margin-top: 45px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

nav{
    top: 0;
    margin-bottom: 100px;
    position: fixed;
    display: flex;
    width: 100%;
    background-color: rgb(255, 255, 255);
    border-bottom: 2px solid rgb(233, 233, 233);
}

nav >.logo{
    width: 20%;
    text-align: center;
    padding: 10px;
    color: rgb(42, 41, 41);
    background-color: rgb(255, 255, 255);
}

.navbar{display: flex;
    background-color: rgb(255, 255, 255);
    width: 70%;
}

.navbar li {
    list-style: none;
}

a{ text-decoration: none;}

.nav-btn, .contact-btn{
    color: black;
    text-align: center;
    width: 150px;
    padding: 4px;
    margin: 5px;
    float: left;
}

.home-btn{
    color: black;
    text-align: center;
    width: 150px;
    padding-top: 10px;
    float: left;
}

.contact-btn, .contact-btn > a{
    background: rgb(0, 0, 0);
    color: #fffef5;
    width: 200px;
    border-radius: 50px;
}

.home-btn{
    background: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    border-radius:5px;
}

.home-btn a{
    color: rgb(255, 255, 255);
}

.hero-background{
    background: #ffd000;
    background: linear-gradient(#000000, #ff6a00);
}

.hero {
    background-image: url("../images/coffee.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size:fill;
    height: 100vh;

    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
    text-align: center;
}

.container {
    max-width: 95%;
    margin: auto;
    padding: 10px;
}

h1,h2,h3,h4,h5,h6,p {
    width: 100%;
}

h1 {
    width: 100%;
    font-size: 48px;
    text-align: center;
}

h2 {
    color: #f7f3ce;
}

.header-1 {
    width: 100%;
    color: #ffffff;
    font-size: 60px;
}

.hero-h2 {
    margin-top: 20px;
    width: 40%;
    color: #ffffff;
}

.header-3 {
    color: #108286;
}

p {
    font-size: 18px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 0px;
    border-radius: 10px 10px 0px 0px;
    padding: 20px;
}

.service-card {
    padding: 20px;
    cursor: pointer;
    padding-bottom: 100px;
    background: #ffffff;
}

.service-card:hover {
    background: #f3fff1;
    border-radius: 5px;
    color: #494847;
}

.section-list{
    background: #065f40;
    padding: 30px;
    border-radius: 0px 0px 10px 10px;
}

ul {
    color: #ffff98;
    margin-left: 50px;
}

form {
    margin-top: 30px;
}

input {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    margin-bottom: 15px;
    outline: none;
}

button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #3b82f6;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #2563eb;
}

.msg {
    margin-top: 20px;
}

.msg p {
    padding: 10px;
    border-radius: 6px;
    display: inline-block;
}

.success {
    background: #22c55e;
}

.warning {
    background: #f59e0b;
}

.error {
    background: #dc2626;
}

.footer {
    margin-top: 50px;
    text-align: center;
    color: #94a3b8;
}

@media (max-width: 768px) {
    h1 {
        font-size: 34px;
    }

    p {
        font-size: 16px;
    }
}