/* Fun Color Palette */
:root {
    --primary-color: #ff6f61; /* Coral */
    --secondary-color: #4db6ac; /* Teal */
    --accent-color: #ffffff; /* White */
    --background-light: #f4f4f4;
    --text-dark: #333;
    --text-light: #fff;
}

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background: var(--background-light);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background-color: var(--primary-color);
    padding: 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar h1 {
    font-size: 2rem;
    margin: 0;
    color: var(--text-light);
    display: inline-block;
}

.navbar .logo {
    color: var(--text-light);
    text-decoration: none;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 8px 16px;
    transition: background 0.3s ease;
}

nav ul li a:hover {
    background-color: var(--secondary-color);
    border-radius: 5px;
}

/* Responsive Styles for Small Screens */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    nav ul li a {
        font-size: 1rem;
        padding: 10px;
    }
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg') center/cover;
    color: var(--text-light);
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin: 0;
}

.hero-overlay p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.cta-button {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: var(--secondary-color);
}

/* Sections */
section {
    padding: 20px;
    margin: 20px auto;
    max-width: 900px;
    background: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 10px 0;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
}

footer a:hover {
    color: var(--text-light);
}

/* Vote Page Styles */
.vote-item {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vote-img {
    max-width: 150px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.vote-item p {
    margin: 0;
    flex-grow: 1;
}

.vote-item label {
    font-weight: bold;
    cursor: pointer;
}

/* Button Style */
button.cta-button {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button.cta-button:hover {
    background: var(--secondary-color);
}

/* Category Styles for Voting */
.category {
    margin-top: 30px;
    padding: 20px;
    border-top: 2px solid var(--primary-color);
}

.category h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

/* Form Styles */
form {
    display: block;
    margin-top: 20px;
}

form input[type="text"], form input[type="email"], form textarea, form input[type="file"], form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background: var(--primary-color);
    color: var(--text-light);
    cursor: pointer;
}

form button:hover {
    background: var(--secondary-color);
}

/* Gallery Styles */
.gallery img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Social Share Section */
.social-share {
    text-align: center;
    margin: 20px 0;
}

.sharethis-inline-share-buttons {
    display: inline-block;
}

/* Contact Section */
.contact {
    text-align: center;
    margin-top: 30px;
}
