/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Salsa&display=swap');

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.34);  
    backdrop-filter: blur(7px);
}

.navbar .navbar-brand {
    font-family: 'Salsa', cursive;
    font-size: 2em;
    text-shadow: 2px 2px 0 rgb(46, 46, 46);
}

.navbar ul li:nth-child(4) a {
    color: #f0d06c;
    transform: scale(1.1);
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
}

.navbar ul li {
    padding: 5px;
    border-radius: 5px;
    transition: .3s;
}

.navbar ul li a {
    color: white;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: .3s;
}

.navbar ul li:hover a {
    color: #f0d06c;
    transform: scale(1.1);
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
}

/* Rose Package */
.rose-package {
    margin-top: 101px;
    background-color: #EDEAE7;
}

.rose-package h1 {
    font-family: 'Salsa', cursive;
}

.rose-package .house-package {
    font-size: 1.5em;
}

.rose-package ul li {
    font-family: 'Lato', sans-serif;
    font-size: 1.3em;
}

.rose-package img {
    border-radius: 40px;
    border: 10px solid white;
    box-shadow: 7px 7px 10px 3px rgba(0, 0, 0, .4);
}

.rose-package .col-lg-4 .row {
    border-radius: 40px;
    background-color: #d6b5a9;
    font-family: 'Lato', sans-serif;
    font-size: 2.5em;
    font-weight: 600;
    padding: 10px;
    color: white;
    border: 7px solid rgba(0, 0, 0, 0.807);
}

/* Sub Footer */
.sub-footer h4 {
    font-weight: 600;
}

.sub-footer {
    font-family: 'Lato', sans-serif;
    background-color: #ddd;
}

.sub-footer span {
    color: rgba(0, 0, 0, 0.726);
}

.sub-footer a {
    color: rgba(0, 0, 0, 0.726);
    margin: 10px 0;
    font-size: 16px;
}

.sub-footer a:hover {
    font-weight: bold;
    color: rgb(154, 131, 2);
}

.sub-footer .row {
    padding-bottom: 50px;
    border-bottom: 5px solid rgba(0, 0, 0, 0.726);
}

/* Footer */
footer {
    background-color: #ddd;
    padding: 20px 0;
    font-family: 'Lato', sans-serif;
}

/* Chat WhatsApp */
.chat-whatsapp .chat {
    width: 130px; 
    border-radius: 30px; 
    border: 3px solid white;
    transition: .3s;
    background-color: rgb(21, 177, 21);
}

.chat-whatsapp .chat:hover {
    background-color: #f0d06c;
    color: white;
}

.chat-whatsapp .chat a {
    font-size: 1.8em; 
    font-family: 'Lato', sans-serif;
    color: white;
}

.chat-whatsapp .chat i {
    margin-left: 5px;
} 