/* Header Component */


.logo-img{
    max-height: 70px;
    width: auto;
    display: block;
    border-radius: 10px;
}

.logo{
    display: flex;
    align-items: center;
}


header {
    background-color: var(--dark-brown);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.header-scrolled {
    padding: 5px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    color: var(--gold);
    font-size: 2.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 5px;
    line-height: 1.2;
}

.logo-text p {
    color: var(--cream);
    font-size: 0.9rem;
    margin-bottom: 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

nav a:hover {
    color: var(--gold);
}

nav a.active {
    color: var(--gold);
}

nav a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--gold);
    left: 0;
    bottom: -5px;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    left: 0;
    bottom: -5px;
    transition: width var(--transition-normal);
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
}

/* Contact Strip Component */
.contact-strip {
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 20px 0;
}

.contact-strip-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.whatsapp-btn-strip, .call-btn-strip {
    background-color: var(--gold);
    color: var(--dark-brown);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color var(--transition-fast), transform var(--transition-normal);
}

.whatsapp-btn-strip:hover, .call-btn-strip:hover {
    background-color: var(--soft-gold);
    transform: translateY(-2px);
}

/* Footer Component */
footer {
    background-color: var(--dark-brown);
    color: var(--cream);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--cream);
    margin-bottom: 0;
    opacity: 0.9;
}

.footer-links h4, .footer-contact h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: color var(--transition-fast);
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--gold);
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 5px;
    flex-shrink: 0;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}