/* Main Styles for Lyrics Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    /* position: sticky; */
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.site-branding h1 {
    margin: 0;
    font-size: 2rem;
    color: #2c3e50;
}

.site-branding a {
    text-decoration: none;
    color: inherit;
}

.site-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Search Form */


.header-search .search-form {
    max-width: 500px;
    margin: 0 auto;
}

.search-input-group {
    display: flex;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.search-field {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    outline: none;
    color: #333 !important;
}

.search-submit {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.search-submit:hover {
    background: #ff5252;
}



/* User Area */
.user-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-links a {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid #3498db;
    border-radius: 5px;
    transition: all 0.3s;
}

.auth-links a:hover {
    background: #3498db;
    color: white;
}

.user-menu {
    position: relative;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 150px;
    display: none;
    list-style: none;
    padding: 0.5rem 0;
}

.user-menu:hover .user-dropdown {
    display: block;
}

.user-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
}

.user-dropdown a:hover {
    background: #f8f9fa;
}


/* ===========================
   NAVBAR BASE
=========================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1000;
}

.navbar .brand {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

/* ===========================
   MENU
=========================== */
.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu-inner {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.menu-link {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-link:hover {
  color: #0073e6;
}

/* ===========================
   SEARCH
=========================== */
.header-search {
  display:none;
}

.search-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 5px 10px;
}

.search-field {
  border: none;
  outline: none;
  padding: 6px 10px;
  width: 180px;
}

.search-submit {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* ===========================
   BUTTONS
=========================== */
.menu-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
}

.btn-darken {
  background: #0073e6;
  color: #fff;
  border: none;
}

.btn-darken:hover {
  background: #005bb5;
}

.btn-outline {
  border: 1px solid #0073e6;
  color: #0073e6;
}

.btn-outline:hover {
  background: #0073e6;
  color: #fff;
}

/* ===========================
   BURGER MENU (MOBILE)
=========================== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: #222;
  border-radius: 2px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 992px) {
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
  }

  .menu.active {
    transform: translateY(0);
  }

  .menu-inner {
    flex-direction: column;
    width: 100%;
  }

  .menu-link {
    padding: 10px 0;
    width: 100%;
  }

  .header-search {
    width: 100%;
    margin: 10px 0;
  }

  .search-field {
    width: 100%;
  }

  .burger {
    display: flex;
  }
}


/* Main Content */
.main-content {
    flex: 1;
    padding: 2rem 0;
}


/* Sidebar */
.sidebar {
    width: 300px;
    padding-left: 2rem;
}

.widget {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-widgets {
    margin-bottom: 2rem;
}

.footer-widget-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-widget h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-widget a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widget a:hover {
    color: white;
}

.site-info {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: white;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header .container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        order: 4;
        width: 100%;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 1rem 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .header-search {
        order: 3;
    }
    
    .search-field {
        width: 150px;
    }
    
    
    .site-info {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 2px;
    }
    
    
}
