/* FOR ALL PAGES*/
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #333;
    background-color: #fffaf4;
    line-height: 1.6;
}
  
p{ 
margin: 50px;
}
  
.header {
    background-color: #772d2b;
    color: white;
    text-align: right;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
  
.header h1 {
    font-family: 'Solitreo';
    font-size: 1.3rem;
    margin: 0;
    letter-spacing: 1px;
}
  
.header p {
    font-family: 'Roboto', sans-serif; 
    font-size: 1.3rem;
    margin-top: 10px;
    line-height: 1.6;
}

.content #cover-img{ 
    width: 100%; 
    height: 700px;
}
 
  
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e3141;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 20px;
}

#navbar .logo-container {
    display: flex;
    align-items: center; 
}

#navbar .company-logo {
    width: 54px; 
    height: auto; 
    margin-right: 10px;
}

#navbar .company-name {
    letter-spacing: 0.1rem;
    color: white;
    font-weight: bold;
    font-family: 'Protest Riot';
    font-size: 32px;
}

.nav-links {
    display: flex;
    margin-left: auto;
}

.nav-links a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    background-color: #734141;
    color: #ffffff;
}

.nav-links a.active {
    background-color: #772d2b;
    color: white;
}

.company-link {
    text-decoration: none; 
    color: inherit; 
}
  
/*FOOTER FOR ALL PAGES*/
.footer {
    background-color: #1e3141;
    color: white;
    padding: 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
}

#footer-contact {
    max-width: 50%;
}

#footer-socials {
    text-align: right;
}

#footer-socials p {
    margin-bottom: 10px;
    font-weight: bold;
}

.footer #company-name {
    letter-spacing: 0.1rem;
    color: white;
    font-weight: bold;
    font-family: 'Protest Riot';font-size: 25px;
}


.social-icon {
    display: inline-block;
    margin-left: 10px;
    margin-right: 15px;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    color: white;
}

.social-icon i {
  font-size: 3rem;
  transition: transform 0.3s ease;
}

.social-icon:hover i {
  transform: scale(1.1); 
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 10px 0;
}


/* News page */
#news {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 900px;
}

#news h2 {
    font-size: 1.8rem;
    color: #772d2b;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

#news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.news-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.news-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e3141;
    font-weight: 600;
    transition: color 0.2s ease-in-out;
}

.news-item h4:hover {
    color: #772d2b;
}

.news-item p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.news-item a {
    align-self: flex-start;
    color: #772d2b;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
}

.news-item a:hover {
    color: #1e3141;
    text-decoration: underline;
    transform: scale(1.05);
}

.news-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.news-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 15px;
}


#what-we-do{ 
  background: #ffffff;
  padding: 20px;
  border: 1px solid #ddd;
}