/* ========== MOVIE REQUEST PAGE STYLES ========== */

/* Background & Layout */
body {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), 
                url('../images/backgrounds/request-bg.jpg') center/cover fixed no-repeat;
    color: white;
    min-height: 100vh;
    overflow-y: auto;
}

.request-container {
    max-width: 1100px;
    margin: 120px auto 60px;
    padding: 0 30px;
}

/* Hero Section */
.request-hero {
    text-align: center;
    margin-bottom: 30px;
}

.request-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #ffcc00;
    letter-spacing: 1px;
}

.request-hero h1 i {
    margin-right: 15px;
    color: #fff;
}

.request-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #ccc;
}

.form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-description {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Form Section */
.request-form-section {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s ease;
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffcc00;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.form-group label i {
    margin-right: 10px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1rem;
    font-family: 'Rockwell', sans-serif;
    transition: border 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffcc00;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group small {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #aaa;
}

/* Buttons */
.form-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.submit-btn,
.reset-btn {
    padding: 16px 30px;
    border-radius: 10px;
    border: none;
    font-size: 1.1rem;
    font-family: 'Rockwell', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    flex: 1;
}

.submit-btn {
    background: linear-gradient(to right, #ffcc00, #ff9900);
    color: black;
    font-weight: bold;
}

.submit-btn:hover {
    background: linear-gradient(to right, #ff9900, #ff6600);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 153, 0, 0.3);
}

.reset-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.reset-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Info Section */
.request-info {
    text-align: center;
    padding: 40px 20px;
}

.request-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #ffcc00;
}

.request-info h2 i {
    margin-right: 15px;
    color: white;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 204, 0, 0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.info-card p {
    color: #bbb;
    line-height: 1.5;
}

.note {
    font-style: italic;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.note i {
    color: #ffcc00;
    margin-right: 10px;
}

/* ========== FORM MESSAGE STYLES ========== */
.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideDown 0.3s ease;
    position: relative;
}

.form-message.success {
    background: rgba(46, 204, 113, 0.15);
    border-left: 4px solid #2ecc71;
    color: #2ecc71;
}

.form-message.error {
    background: rgba(231, 76, 60, 0.15);
    border-left: 4px solid #e74c3c;
    color: #e74c3c;
}

.form-message.info {
    background: rgba(52, 152, 219, 0.15);
    border-left: 4px solid #3498db;
    color: #3498db;
}

.form-message i {
    font-size: 1.2rem;
}

.form-message span {
    flex: 1;
    font-size: 1rem;
}

.close-msg {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.close-msg:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .request-container {
        margin-top: 100px;
        padding: 0 20px;
    }

    .request-hero h1 {
        font-size: 2.5rem;
    }

    .request-form-section {
        padding: 25px;
    }

    .form-buttons {
        flex-direction: column;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .request-container {
        padding: 0 15px;
    }

    .request-hero h1 {
        font-size: 2rem;
    }

    .request-hero p {
        font-size: 1rem;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .submit-btn,
    .reset-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@media screen and (min-width: 769px) {
    #mobileGenresPanel,
    #genresPanelBackdrop,
    #mobileFooter,
    #mobileGenreView { display: none !important; }
}

/* ── Suggestion bar — desktop ── */
.suggest-bar {
  text-align: center;
  padding: 22px 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  font-family: Rockwell, sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 1100px;
  margin: 0 auto;
}

.suggest-bar i {
  color: #ffcc00;
  margin-right: 8px;
}

.suggest-bar a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 400;
  margin-left: 6px;
  transition: opacity 0.2s;
}

.suggest-bar a:hover { opacity: 0.75; }

/* hide mobile version on desktop */
.mob-suggest-bar { display: none; }

/* ── Glassmorphism navbar — request page only ── */
body:has(.request-container) .nav_bar {
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding-top: 30px;
    padding-bottom: 12px;
    margin-top: -20px;
}

body:has(.request-container) header hr {
    border-color: rgba(255, 255, 255, 0.08);
    margin-top: 0px;
}

body:has(.request-container) .search-box { 
    top: 126px;
    font-family: Rockwell, sans-serif;
}
.search-dropdown {
    position: absolute;
    top: 35px;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 5px;
    z-index: 5000;
    display: none;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #ffcc00 transparent;

}
.search-dropdown::-webkit-scrollbar {
    width: 8px;
}
.search-dropdown::-webkit-scrollbar-track {
    background: transparent;
    margin: 6px 0;
}
.search-dropdown::-webkit-scrollbar-thumb {
    background: #ffcc00;
    border-radius: 8px;
    border: 2px solid transparent;
    background-clip: padding-box;
}




