
/* @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap'); */
/* .dancing-script {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
} */
*{
 /* font-family: 'Baloo 2', cursive; */
 font-family: "Arbutus Slab", serif;
}
.hero-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    padding-top: 3rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    color: white;
}

.hero-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-button:hover {
    background-color: #388E3C;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
}



/* menu section start  */
        .menu-container {
            /* max-width: 1200px; */
            margin: 0 auto;
            background: linear-gradient(to right, #bae1f4, #f8e5f4);
        }
        
        .section-title {
            text-align: center;
            /* color: #ff6b6b; */
            margin-bottom: 30px;
            font-size: 2.2em;
            padding-bottom: 10px;
            /* border-bottom: 2px dashed #ffcece; */
        }

         .menu-container h1{
                padding-top: 5rem;
            }
        
        .card-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 40px;
            justify-content: center;
        }
        
        .menu-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            flex: 0 0 48%;
        }
        
        .menu-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .card-header {
            background-color: #e74c4c;
            color: white;
            padding: 15px 20px;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .card-content {
            padding: 20px;
        }
        
        .flavor-list {
            list-style-type: none;
        }
        
        .flavor-item {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            color: #333;
            font-weight: 500;
        }
        
        .flavor-item:last-child {
            border-bottom: none;
        }
        
        .flavor-item:before {
            content: "• ";
            color: #ff6b6b;
            font-weight: bold;
            margin-right: 5px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .menu-card {
                flex: 0 0 calc(50% - 25px);
            }
        }
        
        @media (max-width: 480px) {
            .menu-card {
                flex: 0 0 100%;
            }
            .menu-container h1{
                padding-top: 5rem;
            }
        }
/* menu section end  */

body{
      background: linear-gradient(to right, #bae1f4, #f8e5f4);
}
