/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #2F4F4F;
    background-color: #FAFAFA;
}

/* Header */
.header {
    background-image: url(../imgs-guide/familia.webp);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
}

.logo {
    font-size: 1.5em;
    font-weight: 800;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); 
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); 
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 4px;
    width: 25px;
    background-color: white;
    margin: 3px 0;
}

.hero h1 {
    font-size: 3em;
    margin: 0.5em 0;
}

.hero p {
    font-size: 1.2em;
}

.btn-primary {
    background-color: #D4AF37;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #b9972c;
}

/* Tours Section */
.tours {
    padding: 50px 20px;
   
}

.tours-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tour-card {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.tour-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.tour-card h3 {
    color: #2F4F4F;
    margin: 15px 0;
}

.btn-secondary {
    background-color: #2F4F4F;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    display: block;
    margin: 10px auto;
    text-decoration: none;
    transition: background-color 0.3s ease;
	text-align:center;
}

.btn-secondary:hover {
    background-color: #475757;
}

/* About Me Section */
.about {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 900px;
}

.about-img {
    width: 200px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
    max-width: 600px;
    text-align: left;
}

/* Gallery Section */
.gallery {
    padding: 50px 20px;
    text-align: center;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery-item {
    width: calc(33.333% - 20px);
    margin: 10px;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item img:hover,
.gallery-item video:hover {
    transform: scale(1.05);
}

.video-container iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 5px;
}
/* Contact Section */
.contact {
    padding: 50px 20px;
    text-align: center;
    background-color: #F4F4F4;
    margin: 30px auto;
    max-width: 1000px;
    border-radius: 10px;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact p {
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

/* Form Button */
.contact-form button {
    background-color: #2F4F4F;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #475757;
}

/* Footer */
.footer {
    background-color: #2F4F4F;
    color: white;
    text-align: center;
    padding: 10px 20px;
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #2F4F4F;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .gallery-item {
        width: calc(50% - 20px);
    }

    .about-img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: calc(100% - 20px);
    }

    .hero h1 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 0.9em;
    }
}
.services {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-item {
    width: calc(33.333% - 20px);
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #007BFF;
}

.service-item p {
    font-size: 1em;
    color: #666;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .service-item {
        width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {
    .services h2 {
        font-size: 2em;
    }

    .service-item h3 {
        font-size: 1.2em;
    }

    .service-item p {
        font-size: 0.9em;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
    margin: auto;
}
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
}

.social-icons {
    margin-bottom: 15px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons .facebook-icon {
    filter: invert(21%) sepia(99%) saturate(3036%) hue-rotate(179deg) brightness(94%) contrast(98%);
}

.social-icons .youtube-icon {
    filter: invert(25%) sepia(99%) saturate(7445%) hue-rotate(352deg) brightness(95%) contrast(102%);
}

.social-icons img {
    width: 40px;
    height: 40px;
}
