@import "style.css";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,700&family=Roboto:wght@400;700&display=swap");

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: var(--bg);
	color: var(--text-dark);
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	width: 100%;
}

/* ------------------------- */

.hero a:hover {
	transition: scale 0.1s linear;
	background-color: var(--accent);
	color: var(--primary);
	scale: 1.1;
	box-shadow: 0rem 0.1rem 1rem 0.1rem rgb(180, 178, 178);
}

.hero {
	display: flex;
	flex-direction: column;
	justify-content: end;
	align-items: center;
	background-image:
		linear-gradient(var(--primary), rgba(0, 0, 0, 0.6) 20%),
		url("../assets/images/hero-section-background.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 60vh;
	padding: 2rem;
	color: var(--text_light);
}

.hero>h1 {
	font-family: "Playfair Display", sans-serif;
	font-size: 8rem;
	font-style: italic;
	color: var(--accent);
}

.tagline {
	padding: 2rem;
	font-size: 2rem;
	font-family: "Playfair Display", sans-serif;
	font-style: italic;
}

/* the button */
.hero a {
	padding: 1.5rem 3rem;
	color: var(--text_light);
	background-color: var(--primary);
	border: 0.2rem solid var(--accent);
	border-radius: 3rem;
	transition:
		background-color 0.2s linear,
		color 0.2s linear,
		outline 0.1s linear;
}

.facilities {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 4rem 2rem;
}

.facilities h2 {
	font-family: "Playfair Display", sans-serif;
	font-style: italic;
	color: var(--accent);
	font-size: 3rem;
	margin-bottom: 1rem;
}

.facilities-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2rem;
}

.facility-card {
	background-color: var(--secondary);
	color: var(--text_light);
	padding: 2rem;
	border: 0.2rem solid var(--accent);
	border-radius: 3rem;
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	text-align: center;
	transition:
		scale 0.1s linear,
		box-shadow 0.1s linear;
	box-shadow: 0rem 0rem 1rem 0.01rem var(--bg-darker);
}

.facility-card:hover {
	scale: 1.05;
	box-shadow: 0rem 0rem 1rem 0.2rem var(--bg-darker);
}

.facility-card h3 {
	color: var(--accent);
	font-size: 2rem;
}

.facility-card img {
	width: 100%;
	margin-top: 0.3rem;
	border-radius: 2rem;
}


.membership {
	display: flex;
	flex-direction: column;
	margin: 0px;

	text-align: center;
	background-color: var(--primary);
	padding: 2rem;
}

.membership h2 {
	color: var(--accent);
	font-family: "Playfair Display", sans-serif;
	font-size: 3rem;
	margin-bottom: 1rem;
}

.membership-card h3 {
	font-family: "Playfair Display", serif;
	color: var(--accent);
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
}

.membership-cards-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: center;
	gap: 2rem;
}

.membership-card {
	background-color: var(--secondary);
	color: var(--text_light);
	padding: 2.5rem 2rem;
	border: 1px solid var(--glass);
	border-radius: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: filter 0.2s linear, transform 0.2s linear;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.membership-card:hover {
	transform: translateY(-5px);
	filter: brightness(1.1);
}

.membership-card .price {
	padding: 0.6rem 1.2rem;
	width: auto;
	border: 1px solid var(--accent);
	border-radius: 2rem;
	background-color: transparent;
	color: var(--accent);
	font-weight: 500;
	font-size: 1.1rem;
	margin-top: 0.5rem;
}

.membership-card dl {
	width: 100%;
	display: block;
	margin-top: 1.5rem;
	text-align: left;
}

.membership-card dt {
	font-weight: bold;
	color: var(--white);
	margin-top: 0.8rem;
	font-size: 1rem;
}

.membership-card dd {
	color: var(--muted);
	margin-left: 0;
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--glass);
	font-size: 0.95rem;
}

.membership-card dd:last-child {
	border-bottom: none;
}

.elite {
	border-color: var(--accent) ;
}

.opening-hours {
	text-align: center;
	color: var(--accent);
	font-size: 2rem;
	font-family: "Playfair Display", sans-serif;
}

table {
	width: 60%;
	margin: auto;
	border-collapse: collapse;
	font-size: 1rem;
	font-family: "Roboto", sans-serif;
	margin-top: 2rem;
}

table,
th,
td {
	border: 1px solid #ffffff;
}

th,
td {
	padding: 12px;
	text-align: center;
}

th {
	background: #1b263b;
	color: white;
}

tr {
	background: #071732;
	color: #f8c146;
}

footer {
	text-align: center;
	padding-top: 3rem;
	padding-bottom: 1rem;
	margin-top: 3rem;
	border-top: 1px solid var(--glass);
	background: var(--secondary);
}

.contact-details {
	text-align: center;
	padding: 0;
	margin-bottom: 2rem;
	box-shadow: none;
}

.contact-details h2 {
	color: var(--accent);
	font-family: "Playfair Display", serif;
	font-size: 2rem;
	font-style: italic;
	margin-bottom: 1rem;
}

.contact-details address {
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	font-style: normal;
	line-height: 1.8;
	color: var(--muted);
}

.contact-details address a {
	color: var(--accent);
	display: inline-block;
	margin: 1rem 0.5rem 0;
	padding: 0.5rem 1.5rem;
	border: 1px solid var(--glass);
	border-radius: 2rem;
	transition: all 0.2s ease;
}

.contact-details address a:hover {
	background: var(--accent);
	color: var(--primary);
}

footer>p {
	color: var(--white);
	font-size: 0.9rem;
	margin-top: 2rem;
}