/*
Theme Name: Famosos News
Theme URI: 
Author: Your Name
Author URI: 
Description: A modern WordPress theme for celebrity news and entertainment content.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: famosos-news
*/

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #6d38fc;
    transition: color 0.3s;
}

a:hover {
    color: #4404f3;
    /* background-color: #4404f3; */
}

/* Header Styles */
.site-header {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    max-height: 60px;
}

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

.main-navigation ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.main-navigation li {
    margin: 0 15px;
}

.main-navigation a {
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

/* Featured Slider */
.featured-slider {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

/* Main Content */
.site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.entry-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.entry-card:hover {
    transform: translateY(-5px);
}

.entry-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    padding: 15px;
}

.entry-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.entry-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

/* Sidebar */
.sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sidebar-widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d32f2f;
}

/* Footer */
.site-footer {
    background: #222;
    color: #fff;
    padding: 40px 0;
    /* margin-top: 50px; */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
    gap: 30px;
}

.footer-widget h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: #bbb;
}

.footer-widget a:hover {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .site-content {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .main-navigation ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-navigation li {
        margin: 5px 10px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* .container{
    max-width: 1200px;
    margin: 0 auto;
} */

/* HERO BASE */

#hero {
  position: relative;
  background: #000;
  height: 100vh;       
  min-height: 775px;  
  overflow: hidden;
}

@media (max-width: 768px) {
  #hero {
    margin-top: 75px;
    min-height: 0px;
     height: auto;
  }
}

#hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  padding-top: 60px;
}

@media (max-width: 768px) {
    .site-branding img {
        height: 170px!important;
        margin-top: 20px!important;
    }
}
