@font-face {
    font-family: 'Quentin';
    src: url('../Assets/Fonts/quentin_2/Quentin.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Andarilho';
    src: url('../Assets/Fonts/andarilho/andarilho-font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* General Styles */
body {
    background-image: url('../Assets/Images/Background_images/Images_27.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Andarilho', serif;
    color: #f5e1e1;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}







/* === UPDATED Menu Styles === */

/* Ensure the navigation bar spans the full width and is visible */
.top-menu {
    background-color: #333; /* Dark background for contrast */
    padding: 8px 0; /* Adjust vertical padding as needed, remove horizontal padding */
    position: fixed; /* Keeps the nav bar at the top */
    top: 0;
    left: 0;
    width: 100%; /* Ensure it spans the full width */
    z-index: 1000; /* High z-index to stay on top */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Optional: Add subtle shadow */
}

.top-menu ul {
    list-style-type: none; /* Remove bullets */
    padding: 0;
    margin: 0;
    display: flex; /* === Use Flexbox === */
    justify-content: center; /* Center the items horizontally */
    align-items: center; /* Vertically align items */
    flex-wrap: nowrap; /* === Prevent wrapping === */
}

.top-menu ul li {
    /* display: inline; REMOVE THIS */
    margin: 0 8px; /* Slightly reduced margin */
}

.top-menu ul li a {
    color: #f8d061; /* Yellow text */
    text-decoration: none; /* Remove underline */
    font-family: 'Andarilho', sans-serif; /* Ensure this font is loaded */
    font-size: 0.95rem; /* Slightly reduced font size */
    padding: 5px 10px; /* Add some padding INSIDE the link */
    display: block; /* Allow padding to work correctly */
    white-space: nowrap; /* Prevent text within link from wrapping */
    transition: color 0.2s ease; /* Smooth hover transition */
}

.top-menu ul li a:hover {
    color: #e6a843; /* Change color on hover */
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
     .top-menu {
         padding: 5px 0; /* Reduce padding further on small screens */
     }
     .top-menu ul {
         /* Optional: Justify start if centering looks weird on small screens */
         /* justify-content: flex-start; */
         /* padding-left: 10px; */ /* Add padding if using flex-start */
     }
    .top-menu ul li a {
        font-size: 0.85rem; /* Further reduce font size */
        padding: 5px 7px; /* Further reduce padding */
    }
    .top-menu ul li {
        margin: 0 4px; /* Further reduce margin */
    }
    /* You might need to hide items or switch to a hamburger menu below this width */
}

@media (max-width: 576px) {
    /* Example: Hide the "About" link on very small screens */
    /* Adjust :nth-child() based on which item you might hide */
    /* .top-menu ul li:nth-child(2) {
        display: none;
    } */

     /* Or reduce font/padding even more aggressively */
     .top-menu ul li a {
        font-size: 0.8rem;
        padding: 4px 4px;
     }
      .top-menu ul li {
        margin: 0 2px;
     }
}

/* ============================================== */
/* === UPDATED Dropdown Styling for Dark Nav === */
/* ============================================== */

/* Ensure the LI container can hold the absolute dropdown */
.top-menu ul li#user-nav-item {
    position: relative;
}

/* --- The Dropdown Menu Box --- */
.top-menu .dropdown-menu { /* Targets Bootstrap's class within your nav */
    background-color: #2c2c2c; /* Slightly darker than #333 for contrast */
    border: 1px solid #555;
    border-radius: 0 0 8px 8px; /* Slightly more modern rounding */
    margin-top: 2px; /* Adjust distance from nav bar if needed */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5); /* Enhanced shadow */
    padding: 8px 0; /* Vertical padding for top/bottom */
    min-width: 200px; /* Adjust if needed */
    z-index: 1001;
    /* Base display/position are handled by Bootstrap JS/CSS */
}

/* --- The Individual Links (Items) --- */
.top-menu .dropdown-item {
    /* ** Text Visibility ** */
    color: #f0f0f0 !important; /* <<< KEY CHANGE: Use a light base color (off-white) */
    background-color: transparent !important; /* Ensure no conflicting background */

    /* ** Font & Spacing ** */
    font-family: var(--font-primary, 'Segoe UI', sans-serif); /* Use variable or fallback */
    font-size: 0.98rem; /* Slightly larger? */
    font-weight: 500; /* Slightly bolder */
    padding: 12px 20px; /* More padding */
    white-space: nowrap;
    display: block; /* Ensure block display */
    text-decoration: none !important; /* Remove underline */

    /* ** Transitions ** */
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* --- Item Hover/Focus State --- */
.top-menu .dropdown-item:hover,
.top-menu .dropdown-item:focus {
    color: #ffffff !important; /* <<< KEY CHANGE: Bright white on hover/focus */
    background-color: #4a4a4a !important; /* Darker gray background on hover */
    cursor: pointer;
}

/* --- The Divider Line --- */
.top-menu .dropdown-divider {
    border-top: 1px solid #555;
    margin: 8px 0; /* More spacing around divider */
}

/* --- The Trigger Link (Username) --- */
/* Ensure the main trigger link styling is consistent */
.top-menu .nav-link.dropdown-toggle {
     color: #f8d061 !important; /* Use primary accent color */
     padding: 5px 10px; /* Match other nav links */
     display: flex;
     align-items: center;
     gap: 6px; /* Space between icon and name */
     background-color: transparent !important; /* Ensure no weird background */
}
/* Ensure hover matches other nav items */
.top-menu .nav-link.dropdown-toggle:hover,
.top-menu .nav-link.dropdown-toggle:focus {
    color: #e6a843 !important; /* Darker gold on hover */
}

/* Optional: Ensure caret icon uses text color */
.top-menu .nav-link.dropdown-toggle::after { /* Bootstrap's default caret */
    color: inherit; /* Use the link's color */
    /* You might override this if using Font Awesome caret */
}
/* If using Font Awesome caret (like <i class="fas fa-caret-down"></i>) */
.top-menu .nav-link.dropdown-toggle .fa-caret-down {
     color: inherit; /* Use link's color */
     margin-left: 5px;
     transition: transform 0.3s ease;
}
.top-menu .nav-link.dropdown-toggle[aria-expanded="true"] .fa-caret-down {
    transform: rotate(180deg); /* Rotate caret when open */
}


/* --- Force remove potential list styling on inner LI --- */
/* This shouldn't be necessary if HTML is just the dropdown div, but just in case */
.top-menu #user-nav-item > .dropdown > .dropdown-menu > li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}





/* INTRO */
/* SECTION 1: Hero Section*/

/* Hero Section Styling */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video fills the container */
    z-index: -1; /* Keeps the video behind the content */
}




.hero-content {
    position: relative;
    z-index: 2; /* Ensure content stays above the video */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f5e1e1;
    padding: 0 20px;
    animation: fadeIn 2s ease-in-out;
}

.hero-title {
    font-family: 'Quentin', cursive;
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: #e6cd43;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    font-size: 2rem;
    color: #e6cd43;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Keyframes for Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .scroll-indicator {
        font-size: 1.5rem;
    }
}













/* ABOUT SECTION*/
/*SECTION 2 : ABOUT SECTION */
/* ABOUT SECTION */
/* Modern About Section */
.about-section-modern {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.1), rgba(51, 51, 51, 0.2));
    color: #f5e1e1;
}

/* About Container */
.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Transparent Text Container */
.about-text-container {
    flex: 1;
    max-width: 600px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* About Title */
.about-title {
    font-family: 'Quentin', cursive;
    font-size: 2.5rem;
    color: #f8d061;
    margin-bottom: 15px;
}

/* About Description */
.about-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button Style */
.btn-primary {
    background-color: #f8d061;
    color: #2b2b2b;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #e6a843;
    transform: scale(1.05);
}

/* About Video */
.about-video {
    flex: 1;
    max-width: 600px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Fix Video Positioning (Show Top Part) */
.about-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* Adjusts video to show the top part */
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-text-container {
        max-width: 100%;
        padding: 20px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-video {
        height: 200px;
        max-width: 100%;
    }
}



















/*SECTION 3 : EXPLORE STORIES SECTION*/
/* Story Selection Section */
.story-selection-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #111, #333);
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    color: #f5e1e1; /* Light text color for dark background */
}

.story-selection-section h2 {
    font-family: 'Quentin', cursive;
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #f8d061; /* Golden Yellow Title */
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    animation: glow 2s infinite alternate ease-in-out; /* Cool glowing animation */
}

/* Glowing Title Animation */
@keyframes glow {
    from {
        text-shadow: 0 0 5px #f8d061, 0 0 10px #f8d061, 0 0 15px #e6a843;
    }
    to {
        text-shadow: 0 0 10px #e6a843, 0 0 20px #f8d061, 0 0 30px #e6a843;
    }
}

/* Story Row Styling */
.story-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Story Card Styling */
.story-card {
    background: linear-gradient(0deg, #000000, #555);
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    max-width: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.story-card:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

/* Video Styling */
.story-card video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.story-card:hover video {
    filter: brightness(1.1) contrast(1.2);
}

/* Story Info Styling */
.story-info {
    padding: 15px;
    text-align: center;
    color: #f8d061;
}

.story-info h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: #f8d061;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.story-info p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 15px;
}

/* 📖 Chapters List - Improved Visibility */
.chapters-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0; /* Initially hidden */
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.4s ease;
    background: #1c1c1c; /* Slightly lighter for contrast */
    border-top: 1px solid #444;
    border-radius: 0 0 12px 12px;
}

/* Expand when active */
.chapters-list.expanded {
    max-height: 300px; /* Adjust based on content */
    opacity: 1;
}

/* 📌 Individual Chapter Items */
.chapters-list li {
    padding: 12px 18px;
    border-bottom: 1px solid #333;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Last Item (no border bottom) */
.chapters-list li:last-child {
    border-bottom: none;
}

/* 🖋️ Chapter Links - Better Readability */
.chapters-list li a {
    text-decoration: none;
    color: #ffcc66; /* Warmer color for better visibility */
    font-size: 1.1rem;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
    display: block;
}

/* 🖱️ Hover Effect for Chapters */
.chapters-list li:hover {
    background: #292929; /* Slightly lighter background */
    transform: scale(1.03);
}

.chapters-list li a:hover {
    color: #ffb347; /* More contrast on hover */
    transform: scale(1.05);
}

/* 🌟 View Chapters Button */
.btn-read {
    background: linear-gradient(135deg, #ffcc66, #ff9933); /* Warmer tones */
    color: #222; /* Darker text for contrast */
    border: none;
    padding: 14px 22px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Hover & Active Effects */
.btn-read:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #ff9933, #ffcc66);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.btn-read:active {
    transform: translateY(1px);
}

/* 📱 Responsive Adjustments */
@media screen and (max-width: 768px) {
    .story-card {
        max-width: 90%;
    }

    .btn-read {
        width: 100%; /* Full width on mobile */
        text-align: center;
    }
}

/* Modal Styles */
/* Modal Styles */
/* Fullscreen Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    overflow-y: auto;
    animation: fadeIn 0.5s ease-in-out;
}

.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 5% auto;
    background: linear-gradient(135deg, #1a1a1a, #333333);
    border-radius: 12px;
    color: #f5f5f5;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.5s ease-in-out;
    text-align: center;
}

/* Left Panel */
.modal-left {
    width: 100%;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 20px;
    margin-bottom: 20px;
    animation: slideInLeft 0.6s ease-in-out;
}

.modal-left h2, .modal-right h3 {
    color: #f8d061;
    font-family: 'Quentin', cursive;
    margin-bottom: 10px;
    text-align: center;
    animation: fadeInTitle 0.6s ease-in-out;
}

.modal-left p {
    margin: 20px auto;
    line-height: 1.6;
    max-width: 80%;
    text-align: center;
}

.modal-left iframe {
    width: 100%;
    height: 200px;
    border: 2px solid #f8d061;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
    animation: zoomIn 0.6s ease-in-out;
}

/* Right Panel */
.modal-right {
    width: 100%;
    animation: slideInRight 0.6s ease-in-out;
}

.modal-right h3 {
    margin-bottom: 10px;
}

.modal-right ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    max-width: 80%;
}

.modal-right ul li {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.5);
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
    color: #ffffff !important; /* Force white text */
    text-transform: uppercase;
    text-decoration: none; /* Remove underline if it's a link */
}

/* Ensure links inside list items are also white */
.modal-right ul li a {
    color: #ffffff !important; /* Force white text */
    text-decoration: none; /* Remove underline */
}

.modal-right ul li a:hover {
    color: #1a1a1a !important; /* Change color on hover */
}


/* Close Button */
.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

.close-button:hover {
    color: #f8d061;
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }

}

@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



































/* SECTION 4: Request Form Section */

/* Request Form Section */
#request-story {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.3); /* Transparent overlay */
    text-align: center;
    color: #f8f8f8;
}

/* Section Title Styling */
#request-story h3 {
    font-family: 'Quentin', cursive;
    font-size: 3rem;
    color: #f8d061;
    text-shadow: 0 4px 8px rgba(248, 208, 97, 0.5), 0 0 10px rgba(230, 170, 67, 0.8);
    margin-bottom: 30px;
    animation: fadeInDown 1.5s ease-in-out;
}

/* Form Container */
#story-request-form {
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1); /* Transparent container */
    backdrop-filter: blur(20px); /* Stronger blur effect */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); /* Slightly darker shadow */
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: zoomIn 1.2s ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#story-request-form:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

/* Input and Textarea Styling */
#story-request-form input[type="text"],
#story-request-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7); /* Slightly transparent input */
    font-size: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    font-family: Arial, sans-serif;
    color: #333;
}

#story-request-form input[type="text"]:focus,
#story-request-form textarea:focus,
#story-request-form select:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(248, 208, 97, 0.7);
    transform: scale(1.02);
}

/* Dropdown Styling for MBTI Pair Selection */
#story-request-form select {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    background: rgba(255, 255, 255, 0.7); /* Slightly transparent dropdown */
    border: none;
    border-radius: 25px; /* Rounded corners for elegance */
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    appearance: none; /* Remove default browser styling */
    cursor: pointer;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"%3E%3Cpath fill="%23f8d061" d="M0 0l5 6 5-6z"/%3E%3C/svg%3E'); /* Custom arrow icon */
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    transition: all 0.3s ease;
}

#story-request-form select:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#story-request-form select:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(248, 208, 97, 0.7);
    transform: scale(1.02);
}

/* Submit Button */
#story-request-form button[type="submit"] {
    padding: 15px 25px;
    background: linear-gradient(135deg, #f8d061, #e6a843);
    color: #2b2b2b;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#story-request-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #e6a843, #f8d061);
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

#story-request-form button[type="submit"]:active {
    transform: translateY(1px);
}

/* Feedback Message */
.feedback-message {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: bold;
    animation: fadeIn 1s ease-in-out;
}

.feedback-message.success {
    color: #4caf50; /* Green for success */
}

.feedback-message.error {
    color: #e63946; /* Red for error */
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    #request-story h3 {
        font-size: 2.5rem;
    }

    #story-request-form {
        padding: 30px;
    }
}




















/*SECTION 5 FOTTER*/
/* Footer Section Styling */
/* Footer Section */
/* Footer Section */
.footer-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #111, #333);
    color: #f8d061; /* Golden Yellow Text */
    text-align: center;
    border-top: 2px solid #555;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.5);
}

/* Footer Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Glowing Footer Logo */
.footer-logo {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f8d061;
    text-shadow: 0 3px 8px rgba(248, 208, 97, 0.6), 0 0 15px rgba(230, 170, 67, 0.8);
    animation: glow-logo 3s infinite alternate ease-in-out;
}

/* Glowing Animation for Footer Logo */
@keyframes glow-logo {
    from {
        text-shadow: 0 3px 8px rgba(248, 208, 97, 0.6), 0 0 10px rgba(230, 170, 67, 0.8);
    }
    to {
        text-shadow: 0 5px 12px rgba(248, 208, 97, 0.8), 0 0 20px rgba(230, 170, 67, 1);
    }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    color: #f8d061;
    font-size: 1.8rem;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.social-links a:hover {
    color: #e6a843;
    transform: scale(1.2);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6), 0 0 8px #e6a843;
}

/* Footer Text */
.footer-text {
    font-size: 1rem;
    color: #ddd;
    margin: 10px 0;
}

/* Privacy Policy Link */
.privacy-link {
    font-size: 1rem;
    color: #f8d061;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.privacy-link:hover {
    color: #e6a843;
    text-shadow: 0 2px 6px rgba(230, 170, 67, 0.8);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .footer-logo {
        font-size: 2rem;
    }

    .social-links a {
        font-size: 1.5rem;
    }
}





/* === AUTH MODAL GLOW-UP === */
.auth-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(6px);
  }
  
  .auth-modal .modal-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 30px 25px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 118, 165, 0.3);
    animation-duration: 0.5s;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .auth-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
  }
  
  .tab-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: #eee;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .tab-btn.active {
    background-color: #ff7aa2;
    color: white;
    font-weight: bold;
  }
  
  .auth-panel {
    display: none;
    margin-top: 10px;
  }
  
  .auth-panel.active {
    display: block;
  }
  
  .auth-panel input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  .auth-panel button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background-color: #ff7aa2;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
  }
  
  .auth-panel button:hover {
    background-color: #ff5b8c;
  }
  
  #auth-feedback {
    margin-top: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: #e63946; /* default error color */
  }
  
  #auth-feedback.success {
    color: #2ecc71; /* soft green */
  }
  
  
  
  /* Close button */
  .close-button {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .close-button:hover {
    color: #ff7aa2;
  }
  
  .google-btn {
    background-color: white;
    border: 1px solid #ddd;
    color: #444;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 12px;
    width: 100%;
    transition: all 0.2s ease;
  }
  
  .google-btn:hover {
    background-color: #f7f7f7;
    border-color: #bbb;
  }
 /* === USER DROPDOWN STYLES === */

.btn-user {
    background: none;
    border: none;
    font-family: 'Quentin', cursive;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10;
  }
  
  .dropdown-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  
  /* Rotate arrow when dropdown is open */
  .btn-user.open .dropdown-arrow {
    transform: rotate(180deg);
  }
  
  .custom-user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 110%;
    background-color: #fff;
    border-radius: 10px;
    min-width: 160px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 999;
    padding: 8px 0;
    font-family: 'Andarilho', serif !important;
    font-size: 16px !important;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.25s ease;
  }
  
  /* When shown */
  .custom-user-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Individual link styles */
  .custom-user-dropdown .dropdown-item {
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Andarilho', serif !important;
    font-size: 16px !important;
  }
  
  /* Hover effect */
  .custom-user-dropdown .dropdown-item:hover {
    background-color: #fceaff;
    color: #b09e00;
    font-weight: bold;
    box-shadow: inset 0 0 5px #fdffa3;
    border-left: 4px solid #b09600;
  }
  
  /* Remove Bootstrap caret */
  .dropdown-toggle::after {
    display: none !important;
  }
  