/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffdde1, #ee9ca7);
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar Styling */
.navbar {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
}

.navbar-brand .fa-youtube {
    color: #FF0000;
    margin-right: 10px;
}

/* Main Content Styling */
.main-heading {
    font-weight: 700;
    color: #c2185b;
}

/* Form Styling */
#tag-form {
    border-radius: 50px;
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
}

#tag-form:focus-within {
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

#keyword-input {
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
}

#keyword-input:focus {
    box-shadow: none;
}

.btn-generate {
    background-color: #FF0000;
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 2rem;
    font-weight: 500;
    transition: background-color 0.3s ease-in-out;
}

.btn-generate:hover {
    background-color: #c00000;
    color: white;
}

/* Results Card */
#results-container {
    border-radius: 15px;
    border: none;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
}

/* Tag Badges Styling */
.tag-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    background-color: #fce4ec; /* Light pink */
    color: #ad1457; /* Dark pink */
    border: 1px solid #f8bbd0;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    cursor: default;
}

.tag-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.copy-icon {
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.copy-icon:hover {
    color: #007bff;
}

/* Footer Styling */
.footer {
    background-color: rgba(0, 0, 0, 0.1);
    color: #444;
}