/*
 Theme Name: Cybertrends Child

*/

* {
    margin: 0;
    padding: 0;
    
    font-family: Arial, Helvetica, sans-serif;
}



/* Header styles */
header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo {
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  text-decoration: none;
}

.search-container {
    
    width: 250px;
    outline: none;
    
}

.search-container input {
    width: 100%;
    padding: 8px 30px 8px 10px;
    border: 1px solid #ddd;
    border-radius: 50px;
    outline: none;
}

.search-container button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

.auth-links {
    display: flex;
    gap: 15px;
    
}

.auth-links a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-family: "Righteous", sans-serif;
    font-weight: lighter;
}

/* Navigation styles */
nav {
    background-color: #1a237e;
    color: white;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
}

.nav-item {
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-family: "Righteous", sans-serif;
    letter-spacing: 2px;
}

.nav-item:hover {
    background-color: #0d147b;
}

/* Main content styles */
main {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

.articles-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 750px;
}

.article-card {
    display: flex;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
    
}

.article-image {
    flex: 0 0 260px;
    height: 140px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
}

.article-content {
    padding: 15px;
    flex: 1;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
    font-size: 12px;
    color: #666;
    font-family:  "Roboto", sans-serif;

}

.article-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #000;
    font-family:  "Roboto", sans-serif;
}

.article-summary {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

/* Footer styles */
footer {
    background-color: #1a237e;
    color: white;
    padding: 30px 0 ;
    width: 100%;
    position: relative;
    bottom: 0;
    margin: 0;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
   
}

.footer-column {
    flex: 1;
}

.footer-heading {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-family: "Righteous", sans-serif ;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 12px;
    color: #ccc;
    margin-top: 30px;
}