/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #fff9f0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #ff6b6b;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo h1 {
    margin: 0;
    font-size: 2rem;
    color: white;
}

.logo p {
    margin: 0;
    font-style: italic;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover, nav a.active {
    background-color: #ff8e8e;
}

/* Hero Section */
.hero {
    background-color: #ffb347;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
}

/* Featured Flavors */
.featured {
    padding: 50px 0;
    text-align: center;
}

.featured h2 {
    color: #ff6b6b;
    margin-bottom: 40px;
}

.flavors {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.flavor {
    background: white;
    border-radius: 10px;
    padding: 25px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.flavor:hover {
    transform: translateY(-10px);
}

.flavor-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.flavor h3 {
    color: #ff6b6b;
    margin: 15px 0 10px;
}

/* About Section */
.about {
    padding: 50px 0;
    background-color: #f7f7f7;
    text-align: center;
}

.about h2 {
    color: #ff6b6b;
    margin-bottom: 30px;
}

.about p {
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Menu Page Styles */
.menu {
    padding: 50px 0;
}

.menu h2 {
    color: #ff6b6b;
    text-align: center;
    margin-bottom: 40px;
}

.menu-category {
    margin-bottom: 40px;
}

.menu-category h3 {
    color: #ff8e8e;
    border-bottom: 2px dashed #ffb347;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.menu-category ul {
    list-style: none;
    padding: 0;
}

.menu-category li {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.item {
    font-weight: bold;
    font-size: 1.1rem;
    color: #555;
}

.price {
    float: right;
    color: #ff6b6b;
    font-weight: bold;
}

.description {
    margin: 5px 0 0;
    color: #777;
    font-style: italic;
}

/* Contact Page Styles */
.contact {
    padding: 50px 0;
}

.contact h2 {
    color: #ff6b6b;
    text-align: center;
    margin-bottom: 40px;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info h3 {
    color: #ff8e8e;
    margin-bottom: 20px;
}

.location {
    margin-bottom: 30px;
}

.location h4 {
    color: #555;
    margin-bottom: 5px;
}

.location p {
    margin: 5px 0;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #ff8e8e;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        justify-content: center;
        margin-top: 15px;
    }
    
    .flavors {
        flex-direction: column;
        align-items: center;
    }
    
    .flavor {
        width: 80%;
    }
    
    .contact .container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
}
.icon-container {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999;
}

.ice-icon {
  width: 40px;
  height: auto;
  cursor: pointer;
}