html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
/* Custom Fonts (Placeholder - replace with your actual font if needed) */
:root {
    --aventz-primary: #ec407a; /* A vibrant pink/red for CTA */
    --aventz-secondary: #e8f5e9; /* Light green for background/splash */
    --aventz-text: #333333;
}

body {
    font-family: sans-serif;
    color: var(--aventz-text);
}

/* --- Layout Wrappers --- */

.authentication-wrapper {
    background-color: #ffffff; /* White background for auth forms */
}

/* Landing Page Specific Styling */
.landing-page {
    background-color: var(--aventz-secondary);
    min-height: 100vh; /* Ensure it covers the whole screen */
    padding: 20px;
}

.aventz-logo {
    width: 150px;
    height: auto;
}

.aventz-logo-small {
    width: 60px;
    height: auto;
}

/* --- Form Styling --- */

.login-container, .reset-password-container {
    padding: 30px;
    max-width: 450px; /* Constrain width for mobile-like feel */
    margin: auto;
}

/* Primary Buttons (Matching the Figma pink/red) */
.btn-primary, .get-started-btn, .login-btn {
    background-color: var(--aventz-primary);
    border-color: var(--aventz-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.2s;
}

    .btn-primary:hover, .btn-danger:hover {
        background-color: #d81b60; /* Darker shade on hover */
        border-color: #d81b60;
    }

.send-btn { /* Specific style for the Send button on Forgot Password */
    background-color: var(--aventz-primary);
    border-color: var(--aventz-primary);
}

/* Social Login Buttons */
.social-btn {
    padding: 12px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: white;
    color: var(--aventz-text);
}

    .social-btn i {
        margin-right: 8px;
    }

/* Separator "OR" style */
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9em;
    color: #999;
    margin: 20px 0;
}

    .separator::before,
    .separator::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #eee;
        margin: 0 10px;
    }

/* Form Input Styling */
.form-floating input.form-control {
    border-radius: 8px;
    height: 60px;
}

.form-floating label {
    padding: 1rem 0.75rem;
}

/* Back link for Forgot Password */
.back-link {
    display: block;
    text-align: left;
    margin-bottom: 20px;
    color: var(--aventz-primary);
    text-decoration: none;
}


/* --- New Styles for the 'Get Started' Screen --- */

.landing-page-green {
    /* Use the light green color from the Figma design */
    background-color: var(--aventz-secondary);
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
    /* The layout must be column to stack collage on top of text */
}

/* This is the area where the text and button sits, ensuring it looks like a clean bottom section */
.content-area-overlay {
    background-color: transparent; /* Or a slightly lighter shade of green if the design indicates */
    padding-bottom: 50px !important; /* Extra padding for the bottom look */
    max-width: 500px; /* Constrain content width for mobile aesthetic */
}

/* Placeholders for the complex collage effect */
.collage-area {
    /* Adjust height to push the content to the bottom */
    height: 50vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Ensure the collage placeholder image fills the space and doesn't distort the layout */
    .collage-area img {
        /* In a real scenario, this placeholder would be replaced by specific image elements with complex transforms */
        max-width: 100%;
        height: auto;
    }

/* --- Ensure other styles are maintained (from previous step) --- */

/* ... (Existing styles for .authentication-wrapper, .btn-primary, etc., remain here) ... */


/* --- New Style for Splash Screen Transition --- */

.full-screen-center {
    /* Ensures the element covers the entire screen */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Centering the logo */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Ensure it stays on top */
}

.aventz-logo-large {
    width: 150px; /* Adjust size as needed for the splash screen */
    height: auto;
    animation: fade-in 1s ease-out; /* Optional fade-in effect */
}

/* Optional: Keyframe animation for subtle branding */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Ensure the existing .landing-page-green style 
   is applied to both the splash screen and the get started content.
*/


:root {
    --aventz-primary: #ec407a; /* Vibrant pink/red */
    --aventz-secondary: #e8f5e9; /* Light green background */
    --aventz-text: #333333;
}

body {
    font-family: sans-serif;
    color: var(--aventz-text);
}

/* --- Layout Wrappers --- */
.authentication-wrapper {
    background-color: #ffffff;
}

/* Full screen container for Splash/Get Started */
.full-screen-center {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.landing-page-green {
    background-color: var(--aventz-secondary);
}

.aventz-logo-large {
    width: 150px;
    height: auto;
}

/* Get Started Content Styles */
.content-area-overlay {
    background-color: transparent;
    padding-bottom: 50px !important;
    max-width: 500px;
}

.collage-area {
    height: 50vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .collage-area img {
        max-width: 100%;
        height: auto;
        opacity: 0.9;
    }

/* --- Form & Button Styling --- */

.login-container {
    padding: 30px;
    max-width: 450px;
    margin: auto;
}

.btn-primary, .get-started-btn, .login-btn {
    background-color: var(--aventz-primary);
    border-color: var(--aventz-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
}

    .btn-primary:hover {
        background-color: #d81b60;
        border-color: #d81b60;
    }

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9em;
    color: #999;
    margin: 20px 0;
}

    .separator::before, .separator::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #eee;
        margin: 0 10px;
    }

.form-floating input.form-control {
    border-radius: 8px;
    height: 60px;
}


/* --- Styles for Role Selection Cards (Register.cshtml) --- */

.role-card input[type="radio"] {
    display: none; /* Hide the default radio button */
}

.role-card .card-content {
    border: 1px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #f8f8f8;
}

.role-card input[type="radio"]:checked + .card-content {
    border-color: var(--aventz-primary); /* Highlight border when selected */
    border-width: 2px;
    background-color: #ffe0e9; /* Light pink background when selected */
}

.role-icon {
    font-size: 1.8rem;
    color: var(--aventz-primary);
}

.back-link {
    display: block;
    text-align: left;
    margin-bottom: 20px;
    color: var(--aventz-primary);
    text-decoration: none;
}



/* --- Dashboard & Event List Styles --- */

.event-dashboard-wrapper {
    /* Adjust padding to account for top header and bottom nav */
    padding-bottom: 70px;
}

/* Top Header */
.btn-add-event {
    background-color: var(--aventz-primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
}

/* Search and Filter Bar */
.search-input .form-control {
    border-radius: 8px 0 0 8px;
}

.search-input .input-group-text {
    background-color: white;
    border-radius: 0 8px 8px 0;
    color: #aaa;
}

.btn-filter {
    color: var(--aventz-primary);
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tab Navigation */
.tab-nav .btn-tab {
    background-color: #f0f0f0;
    color: #666;
    border-radius: 20px;
    padding: 8px 15px;
    margin-right: 10px;
    border: none;
    font-weight: 500;
}

    .tab-nav .btn-tab.active {
        background-color: var(--aventz-primary);
        color: white;
    }

    .tab-nav .btn-tab .check-icon {
        font-size: 0.8rem;
        margin-left: 5px;
    }

/* No Events State */
.calendar-icon-large {
    font-size: 3rem;
    color: #ccc;
    margin-top: 40px;
}

.create-event-btn {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
}

/* Event Card Styles */
.event-card {
    border-color: #eee !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.ongoing-badge {
    background-color: #ffe0e9; /* Light pink */
    color: var(--aventz-primary);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
}

.completed-text {
    font-size: 0.7rem;
    color: #28a745; /* Green color for completed text */
    font-weight: bold;
}

.event-details-grid {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
}

.detail-icon {
    color: var(--aventz-primary);
    margin-right: 5px;
}


/* --- Bottom Navigation Bar --- */
.bottom-nav {
    border-top: 1px solid #ddd !important;
    padding-top: 5px;
    padding-bottom: 5px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

    .bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #aaa;
        font-size: 1.5rem;
        transition: color 0.2s;
    }

        .bottom-nav .nav-item.active {
            color: var(--aventz-primary);
        }