/* HERO */
section {
    z-index: 1;
}
.hero {
	height: calc(100dvh - var(--header-height));
	display: flex;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	color: var(--text-color);
	width: 100%;
	flex-direction: column;
    position: relative;
}

.hero-content {
	display: flex;
	position: absolute;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
	max-width: 1600px;
	width: fit-content;
	justify-content: center;
	z-index: 2;
	bottom: 20px;
	left: 20px;
	padding: 2rem;
	background: var(--main-content-background);
	border-radius: 34px;
}
.hero-content-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.google-reviews-section {
    display: flex;
	z-index: 2;
	height: 50px;
	position: absolute;
	bottom: 40px;
	left: 590px;
	flex-direction: row;
	gap: 8px;
	color: white;
	text-shadow: 0 0 4px black;
	width: 230px;
}
.google-reviews-section hr {
	margin: 0;
	border: none;
	width: 1px;
	background-color: white;
}
.reviews-column img {
    height: 18px;
}
.reviews-column span {
    display: flex;
	gap: 5px;
}
.reviews-column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	font-size: 1.2rem;
}
.hero-options {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.hero-content h1 {
	font-size: 43px;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin: 0;
	text-wrap-style: pretty;
	max-width: 460px;
}

.hero-content p {
    font-size: 1rem;
    color: var(--dim-text-color);
    max-width: 480px;
    margin: 0;
    line-height: 1.6;
    text-wrap-style: pretty;
}

.hero-content strong {
    color: var(--text-color);
	font-weight: 500;
	margin: 0 4px;
}

.hero-get-started {
	border: none;
	padding: 14px 20px;
	background: var(--opulence-color-scheme-blue);
	color: white;
	font-size: 1.2rem;
	border-radius: 26px;
	font-family: system-ui;
	font-weight: 200;
	width: 100%;
    cursor: pointer;
    transition: opacity .2s;
}
.hero-get-started:hover {
    opacity: 0.7;
}

/* IMAGE PLACEHOLDER */
.hero-media::before {
    content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 300px;
	background: linear-gradient(to top, #000000 0%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}

.hero-media {
	width: 100%;
	overflow: hidden;
	object-fit: cover;
	position: absolute;
	height: 100%;
	bottom: 0;
}

/* About Opulence Section */
.about-opulence {
	background-color: var(--contrast-item-background);
	padding: 40px 20px;
	margin: 0;
	width: calc(100% - 40px);
	display: flex;
	flex-direction: column;
	align-items: center;
    gap: 40px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
	font-size: 53px;
	font-weight: 600;
	margin-bottom: 10px;
	margin-top: 0;
}

.section-header p {
    font-size: 18px;
    color: var(--dim-text-color);
    margin: 0;
    font-style: italic;
}

/* Features */
.features {
	display: grid;
	justify-content: center;
	gap: 20px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	max-width: 1400px;
}
.key-points {
    grid-template-columns: 1fr 1fr;
	max-width: 900px;
}

.feature {
    background-color: var(--main-content-background);
    padding: 20px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    display: flex; 
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
}

.feature:hover {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.feature-head {
    display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
.feature i {
    font-size: 40px;
    color: var(--opulence-color-scheme-blue);
}

.feature h3 {
    font-size: 20px;
    color: var(--opulence-color-scheme-blue);
    margin: 0;
    font-weight: 400;
}

.feature p {
	font-size: 14px;
	color: #7f8c8d;
	line-height: 1.5;
    margin: 0;
}


.services-title {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 2.6rem;
	width: calc(100% - 40px);
	font-weight: 600;
}

.luxury-services-section {
	background-color: var(--main-content-background);
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.luxury-services-content {
    padding: 40px 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
    max-width: 1400px;
    gap: 1rem;
}
.services-container {
	display: flex;
	flex-direction: row;
	height: 320px;
	gap: 20px;
	width: 100%;
	margin: 20px 0;
	justify-content: flex-start;
	overflow-x: auto;
	scrollbar-width: thin;
}

.luxury-service-card {
    position: relative;
    height: 100%;
	width: 100%;
    min-width: 240px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    transition: filter .3s;
    cursor: pointer;
}
.luxury-service-card:hover {
    filter: brightness(0.8);
}
.luxury-service-card:first-child {
    margin-left: 20px;
}
.luxury-service-card:last-child {
    margin-right: 20px;
}

.luxury-service-info {
    position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(to top, black, transparent);
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: white;
	padding: 1rem 0;
}

.luxury-service-heading {
    font-size: 20px;
    text-align: left;
    font-weight: 600;
    margin: 0;
    width: calc(100% - 2rem);
}


/* General Section Styling */
.why-choose-us {
	padding: 40px 20px;
	background-color: var(--contrast-item-background);
	text-align: center;
	margin: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 0;
	margin-top: 0;
	width: calc(100% - 40px);
	gap: 1rem;
}

/* Headings */
.why-choose-us h2 {
	font-size: 2.1rem;
	font-weight: bold;
	color: var(--text-color);
	margin: 0;
}

/* Text */
.intro-text,
.closing-text {
	font-size: 1.1rem;
	color: var(--dim-text-color);
	margin: 0;
	line-height: 1.5;
	max-width: 1200px;
}

@media (max-width: 1200px) {
    /* Features */
    .features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .hero-content h1 {
	    font-size: 28px;
	    max-width: 400px;
    }
    .hero-content {
		left: 0;
		bottom: 0;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
        justify-content: flex-start;


		gap: 10px;
		height: calc(240px - 2rem);
		width: calc(100% - 2rem);
		padding: 1rem;
    }
	.hero-get-started {
		padding: 10px;
		font-size: 1rem;
	}
    .hero-content-column {
	    width: 100%;
    }
    .google-reviews-section {
		bottom: 260px;
		left: 20px;
	}
    .hero-media {
        height: calc(100% - 200px);
		top: 0;
    }
    .hero-media::before {
	    height: 200px;
    }
}
@media (max-width: 768px) {
    .hero-options {
        gap: 12px;
    }
    /* Features */
    .features {
        grid-template-columns: 1fr;
    }

    .luxury-service-heading {
        font-size: 19px;
    }

    .luxury-service-text {
        font-size: 14px;
        margin-top: 5px;
    }
}

@media (max-width: 600px) {
	.luxury-service-card {
		min-width: 220px;
	}	
    .why-choose-us h2 {
        font-size: 1.6rem;
    }

    .intro-text, .closing-text {
        font-size: 1rem
    }
    .luxury-service-heading, .luxury-service-text {
        width: calc(100% - 20px);
    }

    .luxury-services-section {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        display: grid;
    }

    .luxury-service-heading {
        margin-top: 10px;
    }
}


@media (max-width: 500px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 14px;
    }
    .section-description p {
        font-size: 15px;
        margin-bottom: 15px;
    }
    .features {
        gap: 14px;
    }

    .key-points .feature {
        background-color: var(--main-content-background);
    }
    .feature {
		padding: 15px;
		border-radius: 20px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		box-shadow: none;
    }
    .feature:hover {
        box-shadow: none;
    }
    .feature i {
        font-size: 35px;
        margin: 0;
    }
    .feature h3 {
        font-size: 19px;
        margin: 0;
    }
    .feature p {
        font-size: 15px;
        text-align: left;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .services-title {
        font-size: 2rem;
    }
}