/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles&family=Lacquer&display=swap');

/* Global Styles */
body {
    font-family: 'Lacquer', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Center PayPal Donate Button */
#donate-button-container {
    text-align: center;
    margin: 20px auto;
}

/* Navigation Menu */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4CAF50;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a,
.login-btn {
    text-decoration: none;
    color: white;
    font-size: 1em;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-links a:hover,
.login-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Menu Toggle Button (for mobile) */
.menu-toggle {
    display: none;
    font-size: 1.5em;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #4CAF50;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* Main Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

/* Header Styling */
h1, h2 {
    font-family: 'Fuzzy Bubbles', cursive;
    color: #4CAF50;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2em;
}

/* Prompt Gallery Layout */
.prompt-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Individual Prompt Card */
.prompt {
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    color: white;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ff6347;
}

.prompt:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.prompt h3 {
    font-size: 1.5em; /* Increased Title Size */
    font-weight: bold;
    margin-bottom: 10px;
}

.prompt p {
    font-size: 1em;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .prompt {
        width: 100%;
        height: auto;
    }

    .prompt-gallery {
        justify-content: center;
    }

    .create-prompt-link {
        width: 100%;
        padding: 15px 0;
    }
}

/* Global Link Styling */
a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4CAF50;
    text-decoration: underline;
}
