* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 150px;
    width: 150px;
}

.logo img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #007B5E;
    text-decoration: underline;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    background: url('drinks.png') center/cover no-repeat;
    background-size: cover;
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hero-content p {
    margin-bottom: 20px;
}

.btn {
    background: #007B5E;
    color: #fff;
    padding: 12px 25px;
    border: none;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #333;
}

.section {
    padding: 60px 0;
}

.light-bg {
    background: #f9f9f9;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #007B5E;
    
}

p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
    border-radius: 5px;
}

.centered-text {
    text-align: center;
}

form {
    max-width: 600px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.footer {
    background: #222;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: start;
    text-align: left;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: start;
    align-items: start;

}
.footer-logo img {
    height: 150px;
    width: 150px;
}

.footer-logo img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #005f46;
    text-decoration: underline;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo img{
        height: 100px;
    }

    .footer-logo img {
        height: 80px;
    }
    nav {
        display: none;
        width: 100%;
    }
}
    nav.show {
        display: block;
        background: #fff;
        padding: 10px 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .menu-toggle {
        display: block;
        color: teal;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    button {
  width: 250px; display:block; margin: 0 auto;                
  background-color:#007B5E ;  
  color: white;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: cadetblue;  
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color:#007B5E ;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.center-btn {
    text-align: center;
}

.btn:hover {
    background-color:cadetblue;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

