/* General Body and Container Styling */
/* General Body and Container Styling */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #333;
}

.header {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dnd-logo {
    height: 40px;
    margin-right: 10px;
    filter: invert(1); /* Invert colors for dark background */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* App Header Styling */
.app-header {
    margin-bottom: 30px;
}

.app-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.app-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

/* Button Styling */
.button-group {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

button {
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Card Styling */
.cocktail-card {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.cocktail-card .card {
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cocktail-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cocktail-card .card-body {
    padding: 20px;
    border-radius: 15px;
}

.card-title {
    font-size: 1.75rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #3498db;
}

.card-category, .card-family, .card-ingredients, .card-glassware, .card-garnish, .card-instructions {
    margin-bottom: 10px;
    color: #7f8c8d;
    line-height: 1.5;
}

.card-category strong, .card-family strong, .card-ingredients strong, .card-glassware strong, .card-garnish strong, .card-instructions strong {
    color: #2c3e50;
}

/* Results Container */
#result-container {
    margin-top: 40px;
    padding: 30px;
    background-color: #ecf0f1;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

#result-container h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 2rem;
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 30px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .button-group {
        flex-direction: column;
    }

    button {
        width: 100%;
        padding: 15px;
    }
}
