﻿:root {
    --primary-color: #6c63ff;
    --special-red-color: #ff0051;
    --secondary-color: #ff6584;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #6c63ff 0%, #8b4dff 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6584 0%, #ff8e53 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
}

/* Logo/Brand */
.navbar-brand {
    /*font-family: 'Pirata One', cursive;*/
    font-family: "Yellowtail", cursive;
    font-size: 2.8rem;
    color:black;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .navbar-brand:hover {
        transform: scale(1.05);
    }

    .navbar-brand .dot {
        color: var(--secondary-color);
    }

/* Social Icons */
.social-icon {
    font-size: 1.1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

    .social-icon:hover {
        color: var(--primary-color);
        transform: translateY(-2px);
    }

/* Navigation */
.main-nav {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
}

    .nav-links::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

.nav-link-item {
    color: #555;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: relative;
    white-space: nowrap;
    padding: 0.5rem 0;
}

.elegant {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.elegant-tag {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.60rem;
}
.elegant-name {
    font-weight: 200;
    text-transform: uppercase;
    font-size: 0.80rem;
}
.elegant-text {
    font-weight: 200;
    text-transform: uppercase;
    
}


    .nav-link-item:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--special-red-color);
        transition: width 0.3s ease;
    }
    

    .nav-link-item:hover:after,
    .nav-link-item.active:after {
        width: 100%;
    }

    .nav-link-item:hover,
    .nav-link-item.active {
        color: var(--dark-color);
        text-decoration: none;
    }

.post-title-link {
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .post-title-link:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--special-red-color);
        transition: width 0.3s ease;
    }

    .post-title-link:hover:after,
    .post-title-link:focus:after {
        width: 100%;
    }

    .post-title-link:hover,
    .post-title-link:focus {
        color: var(--dark-color);
        text-decoration: none;
    }

/* User Dropdown */
.user-dropdown {
    border: none;
    background: transparent;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-weight: 500;
}

    .user-dropdown-toggle:after {
        display: none;
    }

.notification-badge {
    position: absolute;
    top: 0px;
    right: -1px;
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    background border: 4px solid white;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

    .dropdown-item i {
        width: 20px;
        margin-right: 10px;
        color: #666;
    }

    .dropdown-item:hover {
        background: rgba(108, 99, 255, 0.1);
        color: var(--primary-color);
    }

        .dropdown-item:hover i {
            color: var(--primary-color);
        }

.dropdown-divider {
    border-color: rgba(0, 0, 0, 0.05);
}

/* Buttons */
.btn-signin {
    background: var(--dark-color);
    color: white;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-signin:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(26, 26, 46, 0.2);
    }

.btn-signup {
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-signup:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 101, 132, 0.3);
    }

/* Main Content */
main {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

/* Footer */
footer {
    background: white;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
}

.footer-brand {
    font-family: "Yellowtail", cursive;
    font-size: 1.5rem;
    color: var(--dark-color);
    letter-spacing: 1px;
}

    .footer-brand .dot {
        color: var(--secondary-color);
    }


/* Side Ads */
.ad-container {
    position: fixed;
    width: 180px;
    height: 100px;
    top: 10%;
    transform: translateY(-50%);
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .ad-container video {
        width: 100%;
        height: 100%;
        object-fit:cover;
    }

.ad-left {
    left: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.post-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ad-right {
    right: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.ad-video {
    max-height: 90vh;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .ad-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        padding: 0.75rem 0;
    }

    .nav-link-item {
        font-size: 0.75rem;
    }
}

.custom-input {
    /* #007bff */
    border: 1px solid;
    border-color: white;
    border-radius: 5px;
    padding: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .custom-input:focus {
        /* #0056b3 */
        border-color: greenyellow;
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    }
