/* =========================================================
EVENTSPHERE HOME PAGE
Modern Professional UI
========================================================= */

:root {
    --primary: #0b3037;
    --primary-light: #134e5e;
    --accent: #2f8f9d;
    --accent-light: #e8f6f7;
    --dark: #102a2f;
    --text: #52666b;
    --muted: #829397;
    --white: #ffffff;
    --light: #f5f9fa;
    --border: #e3ecee;
    --shadow: 0 15px 45px rgba(11, 48, 55, 0.09);
    --shadow-hover: 0 25px 55px rgba(11, 48, 55, 0.16);
}

/* =========================================================
GENERAL
========================================================= */

.home-page {
    overflow: hidden;
}

.section-padding {
    padding: 95px 0;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

    .section-top.centered {
        justify-content: center;
        text-align: center;
    }

    .section-top h2 {
        color: var(--dark);
        font-size: clamp(30px, 4vw, 42px);
        font-weight: 800;
        letter-spacing: -1px;
        margin: 0 0 10px;
    }

    .section-top p {
        color: var(--text);
        font-size: 16px;
        margin: 0;
    }

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: .3s ease;
}

    .section-link i {
        transition: .3s ease;
    }

    .section-link:hover {
        color: var(--accent);
    }

        .section-link:hover i {
            transform: translateX(5px);
        }

/* =========================================================
HERO
========================================================= */

.hero-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 85% 20%, rgba(47, 143, 157, .20), transparent 28%), radial-gradient(circle at 15% 80%, rgba(255, 255, 255, .08), transparent 25%), linear-gradient(125deg, #071f25 0%, #0b3037 48%, #134e5e 100%);
}

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
        background-size: 55px 55px;
        mask-image: linear-gradient(to bottom, black, transparent);
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 100px 0 130px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50px;
    background: rgba(255,255,255,.07);
    color: #d9f5f7;
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6dd6df;
    box-shadow: 0 0 0 5px rgba(109,214,223,.12);
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(43px, 6vw, 76px);
    line-height: 1.03;
    font-weight: 850;
    letter-spacing: -3px;
    margin: 0 0 25px;
    max-width: 850px;
}

    .hero-content h1 span {
        display: block;
        background: linear-gradient(90deg, #72dbe3, #d3fbfd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hero-content > p {
    color: rgba(255,255,255,.75);
    font-size: 18px;
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-primary-btn,
.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 23px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .3s ease;
}

.hero-primary-btn {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

    .hero-primary-btn:hover {
        color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 18px 35px rgba(0,0,0,.24);
    }

    .hero-primary-btn i {
        transition: .3s ease;
    }

    .hero-primary-btn:hover i {
        transform: translateX(4px);
    }

.hero-secondary-btn {
    color: white;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.06);
}

    .hero-secondary-btn:hover {
        color: white;
        background: rgba(255,255,255,.13);
        transform: translateY(-3px);
    }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 65px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .hero-stat strong {
        color: white;
        font-size: 14px;
    }

    .hero-stat span {
        color: rgba(255,255,255,.52);
        font-size: 12px;
    }

.hero-stat-divider {
    width: 1px;
    height: 34px;
    background: rgba(255,255,255,.16);
}

.hero-shape {
    position: absolute;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.hero-shape-one {
    width: 520px;
    height: 520px;
    right: -160px;
    top: -100px;
}

.hero-shape-two {
    width: 300px;
    height: 300px;
    right: 70px;
    bottom: -170px;
}

/* =========================================================
SEARCH
========================================================= */

.search-section {
    position: relative;
    z-index: 10;
    margin-top: -55px;
}

.home-search-box {
    padding: 28px 32px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(11,48,55,.13);
    border: 1px solid rgba(11,48,55,.06);
}

.search-heading {
    margin-bottom: 18px;
}

    .search-heading span {
        color: var(--accent);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1.7px;
    }

    .search-heading h3 {
        color: var(--dark);
        font-size: 19px;
        margin: 4px 0 0;
        font-weight: 750;
    }

.search-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 56px;
    padding: 6px 7px 6px 19px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: #f8fbfb;
}

    .search-wrapper > i {
        color: var(--accent);
        font-size: 17px;
    }

    .search-wrapper input {
        flex: 1;
        min-width: 0;
        border: 0;
        outline: 0;
        background: transparent;
        color: var(--dark);
        font-size: 14px;
    }

        .search-wrapper input::placeholder {
            color: #9aa9ac;
        }

.search-btn {
    border: 0;
    border-radius: 8px;
    height: 44px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

    .search-btn:hover {
        background: var(--primary-light);
        transform: translateY(-1px);
    }

/* =========================================================
EVENTS
========================================================= */

.events-section {
    background: #fff;
}

.event-card {
    height: 100%;
    overflow: hidden;
    border-radius: 17px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(11,48,55,.055);
    transition: .35s ease;
}

    .event-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
        border-color: rgba(47,143,157,.25);
    }

.event-image {
    position: relative;
    height: 235px;
    overflow: hidden;
    background: var(--primary);
}

    .event-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s ease;
    }

.event-card:hover .event-image img {
    transform: scale(1.06);
}

.event-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255,255,255,.12), transparent 45%), linear-gradient(135deg, var(--primary), var(--primary-light));
    color: rgba(255,255,255,.7);
    font-size: 45px;
}

.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 7px 11px;
    border-radius: 7px;
    background: rgba(255,255,255,.94);
    color: #237d58;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 5px 15px rgba(0,0,0,.12);
}

    .event-badge i {
        margin-right: 4px;
    }

.event-date-box {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 58px;
    height: 62px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: white;
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

    .event-date-box strong {
        color: var(--primary);
        font-size: 22px;
        line-height: 1;
    }

    .event-date-box span {
        color: var(--accent);
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        margin-top: 4px;
    }

.event-body {
    padding: 25px;
}

.event-category {
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.event-body h3 {
    color: var(--dark);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 750;
    margin: 9px 0 18px;
}

.event-detail {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 23px;
}

    .event-detail span {
        display: flex;
        align-items: center;
        gap: 9px;
        color: var(--text);
        font-size: 12px;
    }

    .event-detail i {
        width: 15px;
        color: var(--accent);
    }

.event-view-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 17px;
    border-top: 1px solid var(--border);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

    .event-view-btn i {
        transition: .3s ease;
    }

    .event-view-btn:hover {
        color: var(--accent);
    }

        .event-view-btn:hover i {
            transform: translateX(5px);
        }

/* =========================================================
EMPTY STATE
========================================================= */

.empty-state {
    text-align: center;
    padding: 65px 20px;
    background: var(--light);
    border: 1px dashed var(--border);
    border-radius: 17px;
}

.empty-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 27px;
}

.empty-state h4 {
    color: var(--dark);
    font-weight: 750;
}

.empty-state p {
    color: var(--text);
    margin: 0;
}

/* =========================================================
CATEGORIES
========================================================= */

.categories-section {
    padding: 95px 0;
    background: var(--light);
}

.category-card {
    position: relative;
    display: block;
    height: 100%;
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: white;
    text-decoration: none;
    overflow: hidden;
    transition: .35s ease;
}

    .category-card::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        right: -45px;
        bottom: -50px;
        background: var(--accent-light);
        transition: .35s ease;
    }

    .category-card:hover {
        transform: translateY(-6px);
        border-color: rgba(47,143,157,.3);
        box-shadow: var(--shadow);
    }

        .category-card:hover::after {
            transform: scale(1.5);
        }

.category-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 21px;
    transition: .35s ease;
}

.category-card:hover .category-icon {
    background: var(--primary);
    color: white;
    transform: rotate(-5deg);
}

.category-card h4 {
    position: relative;
    z-index: 2;
    color: var(--dark);
    font-size: 17px;
    font-weight: 750;
    margin-bottom: 10px;
}

.category-card span {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

    .category-card span i {
        transition: .3s ease;
    }

.category-card:hover span {
    color: var(--accent);
}

    .category-card:hover span i {
        transform: translateX(4px);
    }

/* =========================================================
ANNOUNCEMENTS
========================================================= */

.announcements-section {
    background: white;
}

.announcement-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: white;
    transition: .3s ease;
}

    .announcement-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
        border-color: rgba(47,143,157,.25);
    }

.announcement-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--accent-light);
    color: var(--accent);
}

.announcement-content {
    padding-right: 25px;
}

.announcement-meta {
    margin-bottom: 8px;
}

    .announcement-meta span {
        color: var(--muted);
        font-size: 10px;
        font-weight: 700;
    }

    .announcement-meta i {
        color: var(--accent);
        margin-right: 5px;
    }

.announcement-content h4 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 750;
    margin-bottom: 8px;
}

.announcement-content p {
    color: var(--text);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.announcement-arrow {
    position: absolute;
    top: 24px;
    right: 22px;
    color: #b2c0c3;
    font-size: 13px;
}

/* =========================================================
MEDIA
========================================================= */

.media-section {
    padding: 95px 0;
    background: var(--light);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.media-card {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    border-radius: 14px;
    background: var(--primary);
}

    .media-card:first-child {
        grid-column: span 2;
        grid-row: span 2;
        min-height: 555px;
    }

    .media-card img {
        width: 100%;
        height: 100%;
        min-height: 270px;
        object-fit: cover;
        transition: .5s ease;
    }

    .media-card:first-child img {
        min-height: 555px;
    }

    .media-card:hover img {
        transform: scale(1.07);
    }

.media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 30px;
}

.media-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px 20px 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background: linear-gradient(transparent, rgba(0,0,0,.78));
    color: white;
}

    .media-overlay span {
        display: block;
        color: #9ee5ea;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1.2px;
        margin-bottom: 4px;
    }

    .media-overlay h4 {
        font-size: 15px;
        font-weight: 700;
        margin: 0;
    }

    .media-overlay > i {
        font-size: 12px;
        opacity: .8;
    }

/* =========================================================
FEEDBACK
========================================================= */

.feedback-section {
    padding: 95px 0;
    background: white;
}

.feedback-card {
    height: 100%;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: white;
    box-shadow: 0 7px 25px rgba(11,48,55,.045);
    transition: .35s ease;
}

    .feedback-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-hover);
    }

.feedback-top {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.student-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 16px;
}

.feedback-top h4 {
    color: var(--dark);
    font-size: 15px;
    font-weight: 750;
    margin: 0 0 3px;
}

.feedback-top span {
    color: var(--muted);
    font-size: 10px;
}

.feedback-rating {
    display: flex;
    gap: 4px;
    margin: 20px 0 14px;
}

    .feedback-rating i {
        color: #f5b83d;
        font-size: 13px;
    }

.feedback-comment {
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.feedback-event {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 11px;
}

    .feedback-event i {
        color: var(--accent);
    }

/* =========================================================
CTA
========================================================= */

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: radial-gradient(circle at 90% 20%, rgba(109,214,223,.18), transparent 25%), linear-gradient(120deg, #071f25, #0b3037 55%, #134e5e);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: auto;
    text-align: center;
}

.cta-label {
    color: #82dce2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.cta-content h2 {
    color: white;
    font-size: clamp(32px, 5vw, 53px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 14px 0 18px;
}

    .cta-content h2 span {
        display: block;
        color: #8de3e8;
    }

.cta-content p {
    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 23px;
    border-radius: 9px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: .3s ease;
}

    .cta-button:hover {
        color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0,0,0,.2);
    }

    .cta-button i {
        transition: .3s ease;
    }

    .cta-button:hover i {
        transform: translateX(4px);
    }

.cta-decoration {
    position: absolute;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.cta-decoration-one {
    width: 420px;
    height: 420px;
    left: -200px;
    top: -220px;
}

.cta-decoration-two {
    width: 300px;
    height: 300px;
    right: -120px;
    bottom: -180px;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    ```
    .section-padding,
    .categories-section,
    .media-section,
    .feedback-section {
        padding: 75px 0;
    }

    .hero-section {
        min-height: 600px;
    }

    .hero-content {
        padding: 85px 0 110px;
    }

        .hero-content h1 {
            letter-spacing: -2px;
        }

    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 350px;
    }

        .media-card:first-child img {
            min-height: 350px;
        }

    ```
}

@media (max-width: 767px) {

    ```
    .section-padding,
    .categories-section,
    .media-section,
    .feedback-section {
        padding: 60px 0;
    }

    .section-top {
        display: block;
        margin-bottom: 30px;
    }

    .section-link {
        margin-top: 17px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-content {
        padding: 75px 0 105px;
    }

        .hero-content h1 {
            font-size: 44px;
            letter-spacing: -1.8px;
        }

        .hero-content > p {
            font-size: 15px;
            line-height: 1.7;
        }

    .hero-stats {
        flex-wrap: wrap;
        gap: 17px;
        margin-top: 45px;
    }

    .hero-stat-divider {
        display: none;
    }

    .search-section {
        margin-top: -45px;
    }

    .home-search-box {
        padding: 22px;
    }

    .search-wrapper {
        height: auto;
        padding: 10px 10px 10px 15px;
        flex-wrap: wrap;
    }

        .search-wrapper input {
            width: calc(100% - 45px);
            flex: none;
            height: 36px;
        }

    .search-btn {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }

    .media-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .media-card,
    .media-card:first-child {
        min-height: 210px;
        grid-column: span 1;
        grid-row: span 1;
    }

        .media-card img,
        .media-card:first-child img,
        .media-placeholder {
            min-height: 210px;
        }

    .announcement-card {
        padding: 20px;
    }

    .announcement-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    ```
}

@media (max-width: 575px) {

    ```
    .hero-content {
        padding: 65px 0 95px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-stat {
        padding: 8px 0;
    }

    .home-search-box {
        border-radius: 14px;
    }

    .section-top h2 {
        font-size: 31px;
    }

    .category-card {
        padding: 22px 17px;
    }

    .category-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .category-card h4 {
        font-size: 14px;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .media-card,
    .media-card:first-child {
        min-height: 270px;
        grid-column: span 1;
    }

        .media-card img,
        .media-card:first-child img,
        .media-placeholder {
            min-height: 270px;
        }

    .cta-section {
        padding: 75px 20px;
    }

    .cta-content h2 {
        font-size: 34px;
    }


}


```css
/* =========================================================
   EVENTSPHERE GLOBAL THEME
========================================================= */
:root {
    --primary: #0b3037;
    --primary-light: #134e5e;
    --accent: #1f8a9e;
    --accent-light: #3aa6b9;
    --dark: #102a30;
    --text: #334e55;
    --muted: #71858a;
    --white: #ffffff;
    --light: #f5f9fa;
    --border: #e5eef0;
    --gradient: linear-gradient( 135deg, #0b3037 0%, #134e5e 55%, #1f8a9e 100% );
    --shadow-sm: 0 5px 20px rgba(11, 48, 55, 0.08);
    --shadow-md: 0 12px 35px rgba(11, 48, 55, 0.12);
    --radius: 14px;
}


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   EVENTSPHERE NAVBAR
========================================================= */

.eventsphere-navbar {
    background: #ffffff;
    padding: 14px 0;
    border-bottom: 1px solid #e9eef0;
    box-shadow: 0 4px 20px rgba(11, 48, 55, 0.06);
    position: sticky;
    top: 0;
    z-index: 1050;
}

/* ================= LOGO ================= */

.eventsphere-logo {
    display: inline-flex !important;
    align-items: center;
    gap: 9px;
    text-decoration: none !important;
    color: #0b3037 !important;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

    .eventsphere-logo span:not(.logo-icon) {
        color: #134e5e;
    }

.logo-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #0b3037, #134e5e);
    color: #ffffff !important;
    font-size: 18px;
    box-shadow: 0 6px 15px rgba(11, 48, 55, 0.20);
}

/* ================= NAV LINKS ================= */

.eventsphere-navbar .nav-link {
    color: #334b51 !important;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 13px !important;
    margin: 0 2px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

    .eventsphere-navbar .nav-link:hover {
        color: #0b3037 !important;
        background: #eef5f6;
    }

    .eventsphere-navbar .nav-link i {
        margin-right: 5px;
    }

/* ================= AUTH BUTTONS ================= */

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

/* LOGIN */

.btn-login {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 85px;
    padding: 9px 18px !important;
    border: 1.5px solid #0b3037 !important;
    border-radius: 9px !important;
    background: transparent !important;
    color: #0b3037 !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

    .btn-login:hover {
        background: #0b3037 !important;
        color: #ffffff !important;
    }

/* REGISTER */

.btn-register {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 95px;
    padding: 10px 19px !important;
    border: none !important;
    border-radius: 9px !important;
    background: linear-gradient( 135deg, #0b3037, #134e5e ) !important;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 6px 15px rgba(11, 48, 55, 0.18);
    transition: all 0.25s ease;
}

    .btn-register:hover {
        color: #ffffff !important;
        transform: translateY(-2px);
        box-shadow: 0 9px 20px rgba(11, 48, 55, 0.25);
    }

/* ================= MOBILE MENU ================= */

.navbar-toggler {
    border: 1px solid #d7e2e4 !important;
    border-radius: 9px;
    padding: 8px 11px;
    color: #0b3037 !important;
    background: #f5f9fa;
}

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(19, 78, 94, 0.12);
    }

    .navbar-toggler i {
        color: #0b3037;
    }

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .eventsphere-navbar {
        padding: 11px 0;
    }

    .navbar-collapse {
        margin-top: 15px;
        padding: 15px;
        background: #ffffff;
        border: 1px solid #e7edef;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(11, 48, 55, 0.08);
    }

    .eventsphere-navbar .navbar-nav {
        align-items: stretch !important;
    }

    .eventsphere-navbar .nav-link {
        padding: 11px 13px !important;
        margin: 2px 0;
    }

    .navbar-actions {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid #edf1f2;
        display: flex;
        width: 100%;
    }

        .navbar-actions .btn-login,
        .navbar-actions .btn-register {
            flex: 1;
        }
}

@media (max-width: 575px) {

    .eventsphere-logo {
        font-size: 21px;
    }

    .logo-icon {
        width: 37px;
        height: 37px;
        border-radius: 10px;
        font-size: 16px;
    }

    .navbar-actions {
        flex-direction: column;
    }

        .navbar-actions .btn-login,
        .navbar-actions .btn-register {
            width: 100%;
        }
}

/* =========================================================
   EVENTSPHERE FOOTER
========================================================= */

.eventsphere-footer {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 75px 0 0;
    background: radial-gradient( circle at 85% 10%, rgba(58, 166, 185, 0.14), transparent 28% ), radial-gradient( circle at 10% 90%, rgba(31, 138, 158, 0.08), transparent 25% ), linear-gradient( 135deg, #071f25 0%, #0b3037 55%, #134e5e 100% );
    color: rgba(255,255,255,.7);
}

    /* Decorative background circles */

    .eventsphere-footer::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border: 1px solid rgba(255,255,255,.045);
        border-radius: 50%;
        right: -180px;
        top: -220px;
    }

    .eventsphere-footer::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        border: 1px solid rgba(255,255,255,.035);
        border-radius: 50%;
        left: -150px;
        bottom: -170px;
    }

    .eventsphere-footer .container {
        position: relative;
        z-index: 2;
    }


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: #ffffff !important;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.7px;
}

    .footer-logo::before {
        content: "\f073";
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 11px;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.13);
        color: #72dbe3;
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 17px;
        box-shadow: 0 8px 20px rgba(0,0,0,.12);
    }


    /* EventSphere colored part */

    .footer-logo span {
        color: #6ed1dc;
    }


/* =========================================================
   FOOTER DESCRIPTION
========================================================= */

.eventsphere-footer .col-lg-4 > p {
    max-width: 430px;
    margin: 0 0 24px;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.eventsphere-footer h5 {
    margin: 4px 0 22px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 750;
    letter-spacing: .2px;
    position: relative;
}

    .eventsphere-footer h5::after {
        content: "";
        display: block;
        width: 28px;
        height: 2px;
        margin-top: 9px;
        border-radius: 10px;
        background: #58c3cf;
    }


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 13px;
    }

    .footer-links a {
        display: inline-flex;
        align-items: center;
        color: rgba(255,255,255,.62);
        font-size: 13px;
        font-weight: 500;
        transition: all .25s ease;
    }

        .footer-links a::before {
            content: "\f105";
            margin-right: 8px;
            color: #58c3cf;
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 10px;
            opacity: .7;
            transition: .25s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

            .footer-links a:hover::before {
                opacity: 1;
                transform: translateX(2px);
            }


/* =========================================================
   GET IN TOUCH
========================================================= */

.eventsphere-footer .col-lg-3:last-child p {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0 0 15px;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.6;
}

    .eventsphere-footer .col-lg-3:last-child p i {
        flex: 0 0 17px;
        margin-top: 3px;
        color: #61c8d4;
        font-size: 13px;
    }


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 9px;
}

    .footer-socials a {
        width: 39px;
        height: 39px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: rgba(255,255,255,.065);
        border: 1px solid rgba(255,255,255,.09);
        color: rgba(255,255,255,.72);
        font-size: 13px;
        transition: all .3s ease;
    }

        .footer-socials a:hover {
            color: #ffffff;
            background: #1f8a9e;
            border-color: #1f8a9e;
            transform: translateY(-4px);
            box-shadow: 0 10px 22px rgba(0,0,0,.18);
        }


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    position: relative;
    margin-top: 55px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.09);
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255,255,255,.42);
        font-size: 11px;
        line-height: 1.6;
    }

        .footer-bottom p:last-child {
            text-align: right;
        }

.footer-bottom-brand {
    color: #ffffff !important;
    font-weight: 600;
}

/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .eventsphere-footer {
        padding-top: 60px;
    }

        .eventsphere-footer .row {
            row-gap: 40px !important;
        }

        .eventsphere-footer h5 {
            margin-bottom: 18px;
        }

    .footer-bottom {
        margin-top: 45px;
    }
}


@media (max-width: 767.98px) {

    .eventsphere-footer {
        padding-top: 55px;
    }

        .eventsphere-footer .col-lg-4 > p {
            max-width: 100%;
        }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 40px;
    }

        .footer-bottom p:last-child {
            text-align: left;
        }
}


@media (max-width: 575.98px) {

    .eventsphere-footer {
        padding-top: 45px;
    }

    .footer-logo {
        font-size: 22px;
    }

        .footer-logo::before {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            font-size: 15px;
        }

    .eventsphere-footer .col-lg-4 > p {
        font-size: 13px;
    }

    .footer-socials a {
        width: 37px;
        height: 37px;
    }

    .footer-bottom {
        padding: 18px 0;
        gap: 7px;
    }

        .footer-bottom p {
            font-size: 10px;
        }
}
