body {
    font-family: 'Italiana', sans-serif;
    margin: 0 !important;
    padding: 0 !important;
    overflow: auto;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    width: 100%;
}
#content {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
}

#home {
    display: flex;
    flex-direction: column;
    width: 100%; /* Changed from 100vw to 100% */
    height: 100vh;
    overflow: hidden; /* Ensures any overflow is hidden */
}

#video-background {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#home video {
    width: 100%;        /* Changed from 100vw to 100% */
    height: 100vh;
    object-fit: cover;
    filter: brightness(40%); /* Adjust brightness for darker effect */
}
#video-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    /*background-color: rgba(229, 159, 160, 0.8);*/
    width: 500px;
    z-index: 2; /* Ensures it stays above other elements */
    color: #ffffff;
    padding: 0px 50px 20px 50px;
}
#video-overlay h1 {
    font-size: 50px;
    font-weight: 600;
    margin: 0;
}
#quotation-button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    border-radius: 30px;
    width: 200px;
    background-color: #e59fa0;
    cursor: pointer;
}
#quotation-button a {
    text-decoration: none;
    color: #ffffff;
}
#quotation-button:hover {
    background-color: #db8889;
}
#about {
    display: flex;
    flex-direction: column;
    width: 100%; /* Changed from 100vw to 100% */
    height: 100vh;
}
#services {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-image: url("../images/servicios_bn.jpg");
    background-size: cover;         /* Ensures the image covers the entire section */
    background-position: center;    /* Centers the image within the section */
    background-repeat: no-repeat;   /* Prevents the image from repeating */
}

#contact {
    display: flex;
    flex-direction: column;
    width: 100%; /* Changed from 100vw to 100% */
    height: 100vh;
    background-color: #f2d4b5;
}
#blog {
    display: flex;
    flex-direction: column;
    width: 100%; /* Changed from 100vw to 100% */
    height: 100vh;
    background-color: #e59fa0;
}
#blog-section-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
}
#blog-content-container {
    display: flex;
    flex-direction: column;
    width: calc(100% - 40vw);          /* Sets the width to 60% of the viewport */
    height: 100vh;        /* Keeps the height at 100% of the viewport */
}
#blog-image-container img{
    display: flex;
    width: 40vw;          /* Sets the width to 40% of the viewport */
    height: 100vh;        /* Keeps the height at 100% of the viewport */
    object-fit: cover;    /* Ensures the image covers the area without distortion */
    overflow: hidden;     /* Ensures any overflow is cropped */
}
#blog-heading 
{
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    background-color: #f2d4b5;
    padding: 0px 10px;
    margin-top: 80px;
    margin-bottom: 20px;
    width: fit-content;
}
#blog-subheading {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    padding: 0px 10px;
    margin-bottom: 20px;
}
#blog-text-container {
    width: 100%;
    height: 100vh;
    padding-left: 20px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 300;
}

/* Floating menu styles */
#menu-container {
    position: fixed;
    display: flex;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%; /* Changed from 100vw to 100% */
    height: 60px;
    z-index: 1000; /* Ensures it stays above other elements */
    background-color: rgba(0, 0, 0, 0.8); /* Black background with 50% opacity */
}

#logo-container {
    height: calc(100% - 20px);
    padding: 0 50px;
}

#logo-container > img {
    height: 100%;
}

.floating-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    z-index: 1000; /* Ensures it stays above other elements */
}

/* Change bottom border on hover */
.floating-menu:hover ul li a {
    color: #ffffff;
    border-bottom: rgb(255, 255, 255) 1px solid transparent !important;
}
#cotiza {
    background-color: #e98688;
    height: auto !important;
    padding: 2px 7px;
    border-radius: 18px;
}
#cotiza:hover {
    background-color: #da6f71;
}
#cotiza a {
    color: #ffffff !important;
}
#cotiza a:hover {
    background-color: transparent !important;
}

.floating-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.floating-menu ul li {
    display: flex;
    align-items: center;
    margin: 0 15px;
    height: 100%;
}

.floating-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgb(160, 160, 160);
    text-decoration: none;
    font-weight: 200;
    font-size: 25px;
}

.floating-menu ul li a:hover {
    background-color: rgba(0, 0, 0, 0.5); /* Black background with 80% opacity */
    text-decoration: none;
}

#logo-grande-container {
    position: fixed;
    top: 35%;
    z-index: 1000;
    height: 500px;
    background-color: transparent;
}

#logo-grande-container > img {
    height: 100%;
    background-color: transparent;
}

.dummy-space {
    padding-top: 60px;
}
#social-media {
    padding: 0px 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    width: 200px;
}
.social-assets {
    height: 30px;
}
.icon-overlay {
    display: flex;
    margin: 0 10px;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    position: relative; /* Make z-index take effect */
    z-index: 1; /* Set z-index to make it stack above other elements */
}
.section-content {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100vh;
    width: calc(100vw - 40px);
}
#about-section-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
}
#about-image {
    width: 40vw;          /* Sets the width to 40% of the viewport */
    height: 100vh;        /* Keeps the height at 100% of the viewport */
    object-fit: cover;    /* Ensures the image covers the area without distortion */
    overflow: hidden;     /* Ensures any overflow is cropped */
}
#about-text-container {
    display: flex;
    flex-direction: column;
    width: calc(100% - 40vw);          /* Sets the width to 60% of the viewport */
    height: 100vh;        /* Keeps the height at 100% of the viewport */
}
#services-section-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}
#services-heading-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 90px 0px 0px 30px;
}
#about-heading-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 90px 0px 0px 30px;
}
#services-heading {
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    background-color: #db8889;
    padding: 0px 10px;
}
#about-heading-block {
    width: 20px;
    height: 40px;
    background-color: #e59fa0;
    margin-right: 20px;
}
#about-heading {
    font-size: 40px;
    font-weight: 600;
}
#about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px 30px;
    text-align: justify;
    font-size: 20px;
    line-height: 1.6;
}
#about-paragraph-end {
    color: #e98688;
    display: flex;
    text-align: justify;
    font-size: 18px;
    font-weight: 600;
}
.subheading {
    display: flex;
    flex-direction: row;
    width: calc(100% - 40px);
    font-size: 13px;
}
.subheading-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 600px;
}
.subheading-image img{
    width: 400px;
}
.subheading-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% - 500px);
    text-align: justify;
    margin-right: 30px;
}
#subheading-image-background {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #e59fa0;
}
.subheading-services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.service {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}
.service-image-background {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f2d4b5;
    margin: 8px;
}
.service-image-background img {
    width: 200px;
}
.service-text {
    display: flex;
    flex-direction: column;
    width: calc(100% - 200px);
    text-align: justify;
    margin-right: 30px;
    font-size: 13px;
}
#services-carousel {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
#event-selector {
    display: none;
}