/*
Theme Name: SLPBopal
Theme URI: https://patelsamajbopal.org
Author: Saurashtra Leuva Patel Samaj Bopal
Author URI: https://patelsamajbopal.org
Description: WordPress theme for Saurashtra Leuva Patel Samaj - Bopal. Clean, modern, and SEO-friendly design for member hostel organization.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: slpsbopal
Tags: custom-menu, custom-logo, featured-images, translation-ready
*/

/* ============================================
   CSS Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0c0e7a;
    --secondary-color: #27ae60;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-gujarati: 'Noto Sans Gujarati', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.entry-content, .entry-header, .hero-indicators, .entry-footer, .entry-title{
    display: none;
}
/* Top Bar Styles */
.top-bar {
    background-color: #e74c3c;
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-item i {
    margin-right: 5px;
}

.top-bar-item a {
    color: white;
    text-decoration: none;
}

.top-bar-item a:hover {
    text-decoration: underline;
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.5);
}

/* Header Styles */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000 !important;
    overflow: visible !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
}

/* Admin bar adjustment for WordPress */
body.admin-bar .header {
    top: 32px !important;
}
footer.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}
@media screen and (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
}

.nav-brand .logo {
    width: 100%;
    height: 120px;
    object-fit: contain;
    display: block;
    padding: 5px 0;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 768px) {
    .top-bar-content {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .top-bar-divider {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
}