
.slider-container {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    transition: opacity 1s ease-in-out;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Overlay for better text visibility */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Fixed content that stays in place */
.fixed-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    text-align: center;
}

/* Logo styling */
.logo-container{
    width: 350px;
    display:flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    height: 131px;
}
.logo-container img{width:100%;}

.logo-title {
    font-size: 64px;
    font-weight: 700;
    color: #c08830; /* Gold color */
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 5px;
}

.logo-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-line {
    display: inline-block;
    width: 30px;
    height: 3px;
    background-color: #c08830;
    margin-right: 10px;
}

.residences-text {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-dot {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #c08830;
    margin-left: 10px;
    margin-top: 2px;
}

/* Tagline and button */
.tagline {
    font-size: 24px;
    font-style: italic;
    margin: 20px 0 40px;
    color: #ffffff;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #c08830;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: transparent;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color:#c08830;
    color: #000;
}

/* Responsive styles */
@media (max-width: 992px) {
    .logo-title {
        font-size: 50px;
    }
    .residences-text {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .logo-title {
        font-size: 40px;
    }
    .residences-text {
        font-size: 18px;
    }
    .tagline {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .logo-title {
        font-size: 32px;
    }
    .logo-line {
        width: 20px;
    }
    .residences-text {
        font-size: 16px;
    }
    .logo-dot {
        width: 18px;
        height: 18px;
    }
    .tagline {
        font-size: 16px;
        margin: 15px 0 30px;
    }
    .cta-button {
        padding: 10px 30px;
        font-size: 14px;
    }
}