/* Custom Frontend Styles */

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f9fa;
    color: #344767;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Main Content */
.frontend-content {
    min-height: 100vh;
    padding: 24px 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 16px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body .fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Footer */
body footer {
    background: white;
    padding: 3rem 0;
    margin-top: auto;
}

footer .logo {
    margin-bottom: 1.5rem;
}

footer h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #344767;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer ul li a {
    color: #67748e;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

footer ul li a:hover {
    color: #2152ff;
}

footer .contact-info {
    display: flex;
    align-items: start;
    margin-bottom: 0.75rem;
}

footer .contact-info i {
    width: 20px;
    margin-right: 10px;
    color: #67748e;
}

footer .contact-info span {
    color: #67748e;
    font-size: 0.875rem;
}

footer .copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #e9ecef;
    color: #67748e;
    font-size: 0.875rem;
}

/* Remove duplicate styles */
body .top-nav, 
body .main-nav, 
body .hashtag-nav {
    display: none;
}

/* Banner Styles */
.banner-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-carousel {
    position: relative;
}

.banner-carousel .carousel-item {
    height: 400px;
}

.banner-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-carousel .carousel-indicators {
    bottom: 20px;
}

.banner-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
}

/* Dropdown Menu Styles */
.navbar .dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    border: 0;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    box-shadow: 0 8px 26px -4px rgb(20 20 20 / 15%), 0 8px 9px -5px rgb(20 20 20 / 6%);
    animation: fadeIn 0.2s ease-in;
    min-width: 200px;
}

.navbar .dropdown-menu.show {
    display: block;
}

.navbar .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #344767;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.navbar .dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.navbar .dropdown-item i {
    margin-right: 0.5rem;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.navbar .dropdown-divider {
    margin: 0.5rem 0;
    border-color: #e9ecef;
}

.navbar .user-menu {
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.navbar .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
} 