@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* General Styles */
body {
    margin: 0;
    font-family: "Lato", sans-serif;
    background-color: #4b4848;
    color: #ffffff;
}



/* Header */
.header {
    background-color: #1d1c1c;
    color: #ffffff;
    text-align: left;
    padding: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
}
.header span {
    font-weight: lighter;
    color: #25d366;
}

/* Presentación */
.presentation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background-color: #2a2a2a;
    color: #ffffff;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.presentation-content {
    max-width: 50%;
}

.presentation-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #EABE3F;
}

.presentation-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #cccccc;
}

.presentation-image {
    max-width: 45%;
}

.presentation-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.container p {
    text-align: center;
    color: #EABE3F;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Product Card */
.product-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #444;
}

.product-card h3 {
    margin: 1rem 0 0.5rem;
}

.product-card p {
    font-size: 0.9rem;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.btn-show-modal {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background-color: #EABE3F;
    color: #585858;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-show-modal:hover {
    background-color: #d4a71e;
}
/* Sección Honeymoon */
.honeymoon {
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    background-color: #7c7c7c;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.honeymoon h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.honeymoon p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
}

.honeymoon-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.honeymoon-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Adaptabilidad para dispositivos */
@media (max-width: 768px) {
    .honeymoon {
        padding: 15px;
    }

    .honeymoon h2 {
        font-size: 1.8rem;
    }

    .honeymoon p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .honeymoon {
        padding: 10px;
    }

    .honeymoon h2 {
        font-size: 1.5rem;
    }

    .honeymoon p {
        font-size: 0.9rem;
    }
}


/* Flotante */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #252525;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.modal input {
    width: calc(100% - 20px);
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal button {
    background-color: #007bff;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.modal button.active {
    cursor: pointer;
    opacity: 1;
}

/* footer */
.footer {
    display: flex;
    justify-content: space-between;  
    align-items: center;             
    padding: 10px 20px;              
    background-color: #333;          
    color: white;                    
}

.footer .icon {
    color: #ffffff;
    margin:0,5 rem;
    text-decoration: none;
    font-size: 1.2rem;
}

.footer .icon:hover {
    color: #1eb941;
}

.copyright {
    font-size: 14px;
}
