* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-info i {
    color: #d4af37;
    margin-right: 10px;
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 20px;
}

/* FOOTER */
.footer {
    background: black;
    text-align: center;
    padding: 30px;
    color: #bdbdbd;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}