/* Color Palette & Additional Reusable Values */
:root {
	--primary-blue-dark: #1d292f;
	--primary-blue-muted: #475c66;
	--accent-blue-light: #bfd0cd;
	--accent-blue-dark: #205169;
	--text-muted-dark: #636363;
	--text-muted-light: #bfbfbf;
	--border-outer: 8px;
	--border-inner: 4px;
	--img-filter: sepia(10%) grayscale(40%);
	--gap-lg: 24px;
	--gap-md: 16px;
	--gap-sm: 8px;
	--gap-xs: 6px;
	--standard-transition: all 200ms ease-in;
	--standard-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}

/* CSS Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'Manrope', sans-serif;
	background-color: #ebf1f4;
}

input,
button {
	font: inherit;
	border: none;
}

/* Form Field Styling */
input::-webkit-datetime-edit-month-field,
input::-webkit-datetime-edit-day-field,
input::-webkit-datetime-edit-year-field,
input::-webkit-datetime-edit-text,
input::placeholder {
	color: rgba(0, 0, 0, 0.75);
}

input:focus::placeholder {
	opacity: 0.5;
}

/* Links & Buttons */
a,
button {
	white-space: nowrap;
	cursor: pointer;
}

a {
	text-decoration: none;
	color: inherit;
}

button:active {
	transform: scale(0.95);
}

/* Images & Media */
img,
iframe {
	display: block;
	max-width: 100%;
}

/* Lists & Texts Styling */
ul {
	list-style-type: none;
}

p {
	letter-spacing: 0.025rem;
}

i {
	font-size: 1.4rem;
}

h2 {
	font-size: 3.8rem;
	border-bottom: 1px solid #000;
	width: fit-content;
	margin-bottom: 24px;
}

/* Reusable Container */
.container {
	max-width: 1400px;
	margin: 0 auto;
}

/**********************/
/* Header Background */
header {
	background-image: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0.45) 120%),
		url(/assets/kolkatalandscape.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	max-width: 100%;
}

header .container {
	padding: 180px 60px 180px 40px;

	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

/**********************************/
/* Header Left Section: Text Only */
.header-text {
	max-width: 600px;
	color: #ffffff;
	flex: 1;
}

.header-text h1 {
	font-size: 5rem;
	font-weight: 700;
}

.header-text h1 span {
	text-shadow: 8px 0px 0px rgba(255, 255, 255, 0.5);
}

.header-text p {
	color: var(--text-muted-light);
}

/**********************************************/
/* Header Right Section: Cards & Navigation */
.header-cards-wrapper {
	flex: 1;
	max-width: 500px;
	display: grid;
	grid-template-columns: repeat(2, minmax(210px, 1fr));
	grid-template-rows: repeat(3, 1fr);
	grid-gap: var(--gap-sm);
}

.header-card {
	border-radius: var(--border-outer);
	padding: 12px;
}

.header-card span {
	display: block;
}

/**********************/
/* Header Card: TIME */
.header-card__time {
	align-self: flex-end;

	height: fit-content;
	background-color: black;
	color: #fff;
	border: 1px solid #636363;

	display: flex;
	justify-content: space-between;
}

.header-card__time #time {
	font-size: 1.6rem;
}

.header-card__time span:last-of-type {
	font-size: 0.9rem;
	color: var(--text-muted-light);
}

.header-card__time i {
	align-self: flex-end;
	color: var(--text-muted-light);
}

/*************************/
/* Header Card: WEATHER */
.header-card__weather {
	background-color: var(--accent-blue-light);

	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.header-card__weather #weather-icon {
	height: 60px;
	filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.25))
		drop-shadow(-1px -1px 4px rgba(77, 77, 77, 0.3));
}

.header-card__weather #weather {
	font-size: 1.6rem;
}

.header-card__weather span:last-of-type {
	font-size: 0.9rem;
}

.header-card__weather div {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.header-card__weather a {
	color: rgba(0, 0, 0, 0.75);
	transition: var(--standard-transition);
}

.header-card__weather a:hover {
	color: var(--accent-blue-dark);
}

/************************************/
/* Header Flight Cards (To & From) */
.header-card__fromlocation,
.header-card__tolocation {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	position: relative;
}

.header-card__fromlocation form,
.header-card__fromlocation div,
.header-card__tolocation div {
	display: flex;
	justify-content: space-between;
	gap: 4px;
}

.airport-code {
	font-size: 4rem;
	font-weight: 500;
	line-height: 1;
}

/*******************************/
/* Header Card: FROM Location */
.header-card__fromlocation {
	background-color: #503e37;
	color: #fff;
	position: relative;
}

.header-card__fromlocation input {
	width: 75%;
	background-color: transparent;
	border: none;
	color: #fff;
	padding-bottom: 5px;
	text-transform: uppercase;
}

.header-card__fromlocation input::placeholder {
	color: rgba(255, 255, 255, 0.8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	width: fit-content;
	font-size: 0.9rem;
	text-transform: capitalize;
}

/* Buttons Inside "From" Location Card */
#search-airport-btn,
#search-location-btn {
	background-color: transparent;
	border: none;
	color: var(--text-muted-light);
	transition: var(--standard-transition);
}

#search-airport-btn:hover,
#search-location-btn:hover {
	color: #fff;
}

#search-airport-btn {
	color: rgba(255, 255, 255, 0.3);
}

.header-card__fromlocation input:focus + #search-airport-btn {
	color: #fff;
}

/*****************************/
/* Header Card: TO Location */
.header-card__tolocation {
	background-color: var(--primary-blue-dark);
	color: #fff;
}

.header-card__tolocation i {
	font-size: 1.2rem;
	padding-top: 3px;
	color: var(--accent-blue-light);
}

.header-card__tolocation > div p {
	font-weight: 300;
	font-size: 0.9rem;
	text-align: end;
	color: var(--accent-blue-light);
}

.header-card__tolocation .airport-code {
	align-self: flex-end;
}

.header-card__tolocation #flight-time,
.header-card__tolocation #flight-distance {
	display: inline;
	font-weight: 500;
	color: #fff;
	white-space: nowrap;
	font-size: 1rem;
}

/**********************/
/* Header Nav Buttons */
.header-nav {
	align-self: start;
	grid-column: span 2;

	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: var(--gap-sm);

	position: relative;
}

/* First link should take up entire column */
.header-nav a:nth-of-type(1) {
	grid-column: span 2;
}

/* Light colored nav buttons */
.header-card__nav-light {
	background-color: #ebf1f4;
	font-weight: 500;
	transition: var(--standard-transition);

	display: flex;
	justify-content: space-between;
}

.header-card__nav-light:hover {
	background-color: var(--accent-blue-light);
}

/* Dark colored nav buttons */
.header-card__nav-dark {
	background-color: #070707;
	color: #fff;
	border: 1px solid var(--text-muted-light);
	transition: var(--standard-transition);
}

.header-card__nav-dark:hover {
	background-color: #494949;
}

/******************************/
/* Nav Section Title: MENU */
.header-nav__title {
	color: var(--text-muted-light);
	font-weight: 400;
	letter-spacing: 0.25rem;
	text-transform: uppercase;
	border-bottom: 1px solid var(--text-muted-light);
	transition: var(--standard-transition);

	position: absolute;
	right: -18%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(90deg);
}

.header-nav__title-hover {
	color: #fff;
	border-bottom: 1.5px solid #fff;
	font-weight: 500;
}

/************************/
/* Flight Loading Dots */
.loading-dots {
	position: absolute;
	top: 55%;
	right: -34.5%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.dot-start i,
.dot-end i {
	font-size: 18px;
	vertical-align: middle;
}

.dot-between i {
	font-size: 4px;
	vertical-align: middle;
}

.dot-start,
.dot-end,
.dot-between {
	opacity: 0.3;
	animation: animate-dots 2.4s ease-in infinite alternate;
}

.dot-between {
	animation-delay: 0.2s;
}

.dot-between:nth-of-type(3) {
	animation-delay: 0.4s;
}

.dot-between:nth-of-type(4) {
	animation-delay: 0.6s;
}

.dot-between:nth-of-type(5) {
	animation-delay: 0.8s;
}

.dot-between:nth-of-type(6) {
	animation-delay: 1s;
}

.dot-end {
	color: #99dbfb;
	animation-delay: 1.2s;
}

@keyframes animate-dots {
	0% {
		opacity: 0.3;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0.3;
	}
}

/**************************************/
/* Aside Form To Search Flights/Hotels */
aside .container {
	background-color: #1d292fc3;
	width: fit-content;
	padding: 12px 40px 20px;
	backdrop-filter: blur(2px);
	margin-top: -50px;
	border-radius: var(--border-outer);

	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gap-sm);
	box-shadow: var(--standard-shadow);
}

aside span {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: var(--gap-xs);
}

/******************************/
/* Flight form inputs & label */
.flight-form__label {
	font-weight: 500;
	font-size: 0.8rem;
	color: #aaacbd;
}

.flight-form__input {
	width: 100%;
	height: 30px;
	padding: 4px;
	background-color: #ececec;
	border-radius: var(--border-inner);
}

/**********************/
/* Flight form button */
#flight-form-btn {
	padding: 4px 20px;
	border: none;
	border-radius: var(--border-inner);
	background-color: #3a4c54;
	color: #fff;
	transition: var(--standard-transition);
	align-self: flex-end;

	display: flex;
	gap: 6px;
	align-items: center;
}

#flight-form-btn i {
	font-size: 1.2rem;
	padding-left: 4px;
	transition: var(--standard-transition);
}

#flight-form-btn:hover {
	background-color: var(--accent-blue-light);
	color: #000;
}

#flight-form-btn:hover i {
	transform: translateX(6px);
}

/********************************/
/* ABOUT SECTION */
#about {
	padding: 100px 80px;
}

.about-cards-wrapper {
	display: grid;
	grid-template-columns: minmax(250px, 1fr) 2fr;
	align-items: center;
	gap: var(--gap-md);
}

/******************************/
/* About Section: Description */
.about-card__text {
	font-size: 0.9rem;
	padding: 8px 16px 16px 0;
}

/**************************************************/
/* About Section: Data Cards - Population & Flags */
.about-card__data {
	background-color: #fff;
	box-shadow: var(--standard-shadow);
	border-radius: var(--border-outer);
	height: 225px;
	padding: 16px 24px;
	overflow: hidden;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.about-card__data-heading {
	display: flex;
	align-items: center;
	gap: var(--gap-sm);
}

.about-card__data-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap-md);
}

/**************************************/
/* About Section: Population Card */
.about-card__data-population p {
	font-size: 2.8rem;
	font-weight: 700;
	white-space: nowrap;
}

.about-card__data-population span {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-muted-dark);
}

.about-card__data-population a {
	color: #5f7d8a;
	font-size: 0.75rem;
	text-decoration: underline;
	transition: var(--standard-transition);
}

.about-card__data-population a:hover {
	color: var(--primary-blue-dark);
}

/******************************/
/* About Section: Flag Card */
.about-card__flags {
	font-size: 1.5rem;
	overflow: hidden;
}

.about-card__flags li {
	white-space: nowrap;
	transform: translateX(-50%);
	letter-spacing: 0.25rem;
}

.about-card__flags li:nth-of-type(odd) {
	animation: marquee 8s infinite ease-in alternate;
}

.about-card__flags li:nth-of-type(even) {
	animation: marquee 8s infinite ease-in alternate-reverse;
}

.about-card__flags li:hover {
	animation-play-state: paused;
	cursor: default;
}

@keyframes marquee {
	100% {
		transform: translateX(0);
	}
}

/**************************/
/* EXPERIENCE SECTION */
.about__experience-wrapper {
	margin: 16px auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap-md);
}

.about-card__experience {
	padding: 16px 24px 24px 24px;
	border-radius: var(--border-outer);
	background-color: var(--primary-blue-dark);
	color: #fff;
	box-shadow: var(--standard-shadow);
}

.about-card__experience h3 {
	margin-bottom: var(--gap-sm);
}

.about-card__experience:nth-of-type(2) {
	background-color: var(--primary-blue-muted);
	box-shadow: var(--standard-shadow);
}

/******************************/
/* FOOD GALLERY SECTION */
.food-gallery-card {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: var(--gap-sm);
	height: 95%;
}

.gallery-img-wrapper {
	position: relative;
	overflow: hidden;
}

.gallery-img-wrapper img {
	border-radius: var(--border-inner);
	transition: var(--standard-transition);
	object-fit: cover;
	aspect-ratio: 1 / 1;
	height: 100%;
	width: 100%;
	filter: var(--img-filter);
}

.caption-hover {
	opacity: 0;
	transition: var(--standard-transition);
	transition-delay: 200ms;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.25rem;
	border-bottom: 1px solid #fff;

	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.gallery-img-wrapper:hover .caption-hover {
	opacity: 1;
}

.gallery-img-wrapper:hover img {
	filter: blur(2px) opacity(0.8) grayscale(1);
	transform: scale(1.2);
}

/******************************/
/* ENTERTAINMENT SECTION */
.entertainment-card-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: var(--gap-sm);
	height: 95%;
}

.entertainment-card:nth-of-type(1),
.entertainment-card:nth-of-type(4),
.entertainment-card:nth-of-type(5),
.entertainment-card:nth-of-type(8) {
	grid-column: span 2;
}

.entertainment-card {
	background-color: #ffffff;
	color: #070707;
	padding: 8px;
	border-radius: var(--border-inner);

	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.entertainment-card__heading {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 2px;
}

.entertainment-card__caption {
	font-size: 0.8rem;
	margin-bottom: 6px;
}

.entertainment-card__btn {
	align-self: flex-end;
	background-color: var(--primary-blue-dark);
	color: #fff;
	font-size: 0.9rem;
	padding: 4px 8px;
	border-radius: var(--border-inner);
	transition: var(--standard-transition);
}

.entertainment-card__btn i {
	font-size: 0.8rem;
	margin: 2px;
}

.entertainment-card__btn:hover {
	background-color: var(--accent-blue-light);
	color: #000;
}

/***************************/
/* TOP DESTINATION SECTION */
#destinations {
	padding: 20px 80px;
}

.destination-card-wrapper {
	display: flex;
	gap: var(--gap-md);
	overflow-x: scroll;
	padding: 40px 0;
}

.destination-card {
	padding: 20px;
	border-radius: var(--border-outer);
	box-shadow: var(--standard-shadow);
	background-color: #fff;
	min-width: 350px;
}

.destination-card__content h3 {
	margin-bottom: 4px;
	font-size: 1.4rem;
}

.destination-card__content p {
	font-size: 0.9rem;
	margin-bottom: 16px;
	color: #444444;
}

.destination-img-wrapper {
	margin-bottom: 16px;
	margin-top: 10px;

	display: grid;
	grid-template-columns: 1fr 1fr;
}

.destination-img {
	height: 275px;
	border-radius: var(--border-inner);
	object-fit: cover;
	grid-column: span 2;
	filter: var(--img-filter);
}

.destination-map {
	height: 275px;
	border-radius: var(--border-inner);
	display: none;
}

.destination-map__active {
	display: block;
}

.destination-img__active {
	grid-column: span 1;
	filter: grayscale(75%);
}

.destination-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.destination-card__rating i {
	color: var(--accent-blue-dark);
	margin-bottom: 4px;
}

.destination-card__rating p {
	font-weight: 700;
}

.destination-card__rating small {
	font-weight: 400;
	color: var(--text-muted-dark);
}

.toggle-map-btn {
	background-color: var(--accent-blue-dark);
	color: #fff;
	padding: 8px 16px;
	width: fit-content;
	border: none;
	border-radius: var(--border-inner);
	transition: var(--standard-transition);
	font-size: 0.8rem;

	display: flex;
	align-items: center;
	gap: 8px;
}

.toggle-map-btn i {
	font-size: 1rem;
}

.toggle-map-btn:hover {
	background-color: var(--accent-blue-light);
	color: #000;
}

/********************************/
/* Areas & Hotels Section */
#areas {
	padding: 80px 80px;
}

.area-row-wrapper {
	display: grid;
	gap: var(--gap-md);
	grid-template-columns: 1fr 1fr;
	margin: var(--gap-md) auto;
}

/******************************/
/* Area Info Card */
.area-card {
	position: relative;
	background-color: #fff;
	padding: 20px 20px 30px 30px;
	border-radius: 0 8px 8px 8px;
}

.area-card h3 {
	background-color: #fff;
	padding: 10px 7px;
	color: var(--primary-blue-dark);
	text-transform: uppercase;
	letter-spacing: 0.3rem;
	width: fit-content;
	font-weight: 800;
	font-size: 1.6rem;
	border-radius: 8px 8px 0 0;

	position: absolute;
	top: 100px;
	left: -3.5%;
	transform: rotate(-90deg);
	transform-origin: left center;
	z-index: 1;
}

.area-row-wrapper:nth-child(3) .area-card h3 {
	top: 136.9px;
}

.area-row-wrapper:nth-child(4) .area-card h3 {
	top: 100px;
}

.area-card__intro {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--gap-lg);
	height: 100%;
}

.area-card__intro p {
	line-height: 1.5;
	font-size: 0.95rem;
}

.area-card__intro ul {
	align-self: flex-end;

	display: flex;
	white-space: nowrap;
	flex-wrap: wrap;
	gap: var(--gap-sm);
}

.area-card__intro li {
	padding: 6px;
	border-radius: var(--border-inner);
	font-size: 0.75rem;
	background-color: #ececec;
}

/**********************/
/* HOTEL CARDS */
.hotel-card-wrapper {
	background-color: #fcfcfc;
	color: #fff;
	padding: 16px;
	border-radius: var(--border-outer);
	box-shadow: var(--standard-shadow);

	display: flex;
	gap: var(--gap-md);
	align-items: center;
	justify-content: center;
}

/******************************************************/
/* Button Styling for Hotel Selection & Booking */
.hotel-card-buttons-wrapper li {
	margin-bottom: 4px;
}

.hotel-button {
	background-color: #fff;
	display: block;
	padding: 4px;
	color: #000;
	border-radius: var(--border-inner);
	font-size: 0.8rem;
	transition: var(--standard-transition);
	border: none;
	border: 1px solid var(--primary-blue-dark);
	width: 130px;
}

.hotel-button.active-button {
	font-weight: bold;
}

.hotel-booking-btn {
	font-size: 0.8rem;
	padding: 4px 12px;
	border-radius: var(--border-inner);
	background-color: var(--accent-blue-dark);
	color: #fff;
	border: 1px solid transparent;
}

.hotel-button.active-button,
.hotel-booking-btn:hover,
.hotel-button:hover {
	background-color: var(--primary-blue-muted);
	color: #fff;
	border: 1px solid transparent;
}

.hotel-booking-btn:active {
	transform: scale(0.95);
}

/**************************************/
/* Hotel Content + Images + Footer */
.hotel-card {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.hotel-card img {
	filter: var(--img-filter);
	object-fit: cover;
	border-radius: var(--border-inner);
	aspect-ratio: 21 / 14;
	margin: 6px auto;
	width: 100%;
	box-shadow: var(--standard-shadow);
}

.hotel-card__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2px;
}

.hotel-card__heading h4 {
	color: var(--primary-blue-dark);
	font-size: 1rem;
}

.hotel-card__contact {
	color: var(--text-muted-dark);
}

.hotel-address {
	font-size: 0.9rem;
}

.hotel-number {
	font-size: 0.8rem;
}

/***************************************/
/* CTA Bottom General Styling + Text */
#cta {
	padding: 150px 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 36px;
}

#cta h2 {
	border-bottom: none;
	margin-bottom: 0;
}

#cta h3 {
	font-size: 2.4rem;
	color: var(--primary-blue-muted);
	margin-bottom: 12px;
}

.cta-text,
.cta-form-wrapper {
	width: 500px;
}

/**********************/
/* CTA FORM */
.cta-form-wrapper {
	color: var(--accent-blue-light);
	background-color: var(--primary-blue-muted);
	padding: 24px;
	border-radius: var(--border-outer);
	box-shadow: var(--standard-shadow);
}

.cta-form {
	display: flex;
	flex-direction: column;
	gap: var(--gap-sm);
}

/* Each div represents each label & input pair */
.cta-form > div {
	display: flex;
	align-items: center;
}

.cta-form input {
	flex: 3;
	border-radius: var(--border-inner);
	border: none;
	padding: 4px;
	background-color: #ececec;
}

.cta-form input:disabled {
	background-color: #667a84;
	border: 1px solid #ececec;
	cursor: not-allowed;
}

.cta-form input:disabled::placeholder {
	color: var(--text-muted-light);
}

.cta-form label {
	flex: 1;
	color: #ebf1f4;
	font-size: 0.8rem;
}

/**********************/
/* CTA Button Styling */
#cta-button {
	background-color: var(--primary-blue-dark);
	color: #fff;
	padding: 8px 24px;
	border-radius: var(--border-inner);
	width: 100%;
	transition: var(--standard-transition);

	display: flex;
	gap: var(--gap-xs);
	align-items: center;
	justify-content: center;
}

#cta-button:hover {
	background-color: var(--accent-blue-light);
	color: #000;
}

#cta-button i {
	font-size: 1.2rem;
	transition: var(--standard-transition);
}

#cta-button:hover i {
	transform: translateX(6px);
}

/**********************/
/* FOOTER SECTION */
footer {
	background-color: var(--primary-blue-dark);
	color: var(--accent-blue-light);
}

footer h5 {
	color: #ebf1f4;
	font-size: 1.4rem;
	margin-bottom: 12px;
}

footer p {
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 12px;
}

.footer-content-wrapper {
	display: grid;
	grid-template-columns: 1fr 2fr 2fr;
	padding: 80px 80px 60px;
	gap: var(--gap-lg);
	max-width: 1400px;
	margin: 0 auto;
}

/* Each div represents each section that has its own heading */
.footer-content-wrapper > div {
	padding: 0 30px;
}

/* Links & Icon Styling */
.footer__nyc-links li {
	margin-top: 6px;
}

.footer__nyc-links a {
	font-size: 0.9rem;
}

.footer__social-icons {
	margin-top: 24px;
	display: flex;
	gap: var(--gap-md);
}

.footer__social-icons a:hover i {
	transform: scale(1.1);
}

.footer-content-wrapper a,
.footer__social-icons i {
	transition: var(--standard-transition);
}

.footer-content-wrapper a:hover {
	color: #fff;
	text-decoration: underline;
}

/***********************/
/***********************/
/***********************/
/***********************/
/***********************/
/* MEDIA QUERIES */
@media (max-width: 1160px) {
	/* General Margin/Padding/Size Adjustments */
	#about,
	#destinations,
	#cta {
		padding: 100px 30px;
	}

	#areas {
		padding: 100px 30px 100px 60px;
	}

	/* Header-specific changes */
	.header-text {
		flex: auto;
		max-width: 500px;
	}

	.header-text h1 {
		font-size: 4.4rem;
	}

	.header-card__fromlocation input::placeholder {
		font-size: 0.9rem;
	}

	/* About (population & flag cards) changes */
	.about-cards-wrapper {
		grid-template-columns: 1fr;
	}

	.about-card__data-wrapper {
		grid-template-columns: min-content 1fr;
	}

	/* Hotel card changes */
	.hotel-card-wrapper {
		flex-direction: column-reverse;
	}

	.hotel-card-buttons-wrapper ul {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 4px;
	}

	/* Experience (food & things to do) changes */
	.about__experience-wrapper {
		grid-template-columns: 1fr;
	}
}

/***********************/
/***********************/
@media (max-width: 800px) {
	/* General adjustments */
	h2 {
		font-size: 2.8rem;
		margin-bottom: 10px;
	}

	#about,
	#destinations {
		padding: 60px 20px;
	}

	#cta {
		padding: 60px 60px 120px;
	}

	#cta h3 {
		font-size: 2rem;
	}

	#areas {
		padding: 60px 20px 60px 60px;
	}

	/* Header section form changes */
	aside .container {
		grid-template-columns: repeat(3, 1fr);
		margin-top: -70px;
	}

	#flight-form-btn {
		grid-column: span 3;
		justify-content: center;
		padding: 8px 20px;
	}

	#flight-form-btn:hover {
		transform: none;
	}

	/* Area section changes */
	.area-row-wrapper {
		grid-template-columns: 1fr;
	}

	/* Footer section */
	.footer-content-wrapper {
		grid-template-columns: 1fr;
		padding: 60px 40px;
	}

	.footer-content-wrapper > div:first-of-type {
		display: none;
	}
}

/***********************/
/***********************/
@media (max-width: 700px) {
	/* Header & CTA (Bottom) Adjustments */
	header .container {
		padding: 100px 20px;
		gap: 40px;
	}

	#cta {
		padding: 150px 80px;
		flex-direction: column;
	}

	.cta-text,
	.cta-form-wrapper {
		width: 100%;
	}

	/* About (population & flag cards) section */
	.about-card__data-wrapper {
		grid-template-columns: 1fr;
	}

	.about-card__data:first-of-type {
		flex-direction: row;
		gap: 4px;
		height: auto;
		flex-wrap: wrap;
	}
}

/***********************/
/***********************/
@media (max-width: 580px) {
	/* General & Header adjustments */
	h2 {
		font-size: 2.2rem;
		margin-bottom: var(--gap-md);
	}

	.header-text h1 {
		font-size: 3.4rem;
	}

	.header-text p {
		font-size: 0.9rem;
	}

	.header-text h1 span {
		text-shadow: 4px 0px 0px rgba(255, 255, 255, 0.5);
	}

	/* Header cards */
	.header-cards-wrapper,
	.header-nav {
		display: flex;
		flex-direction: column;
	}

	.header-card,
	.header-nav {
		width: 100%;
	}

	.header-nav__title {
		position: static;
		transform: none;
		margin-top: 60px;
	}

	.header-card__fromlocation input {
		width: 85%;
	}

	.header-card__tolocation div {
		flex-direction: column;
		align-items: end;
	}

	/* Header form */
	aside .container {
		width: 100%;
		padding: 12px 20px 20px;
		border-radius: 0;
		background-color: var(--primary-blue-dark);
		margin-top: -30px;
	}

	/* Header Loading Animation */
	.loading-dots {
		right: 50%;
		left: 50%;
		top: 75%;
		transform: translate(-50%, -50%) rotate(90deg);
	}

	.dots-between:nth-of-type(5),
	.dots-between:nth-of-type(6) {
		display: none;
	}

	/* About (population & flag cards) adjustments */
	.about-card__data-wrapper {
		grid-template-columns: 1fr;
	}

	.about-card__data-population {
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.about-card__data-population p {
		align-self: center;
	}

	/* Experience: Food gallery hover text */
	.caption-hover {
		font-size: 0.9rem;
		letter-spacing: 0.175rem;
	}

	/* Area section changes */
	#areas {
		padding: 60px 20px;
	}

	.area-card {
		border-radius: var(--gap-sm);
		padding: 20px;
		height: fit-content;
	}

	.area-card h3 {
		position: static;
		padding: 0;
		transform: none;
		border-bottom: 1px solid var(--primary-blue-muted);
		margin-bottom: var(--gap-md);
	}

	/* CTA Form (Bottom) Changes */
	#cta {
		padding: 60px 0;
		flex-direction: column;
	}

	.cta-text {
		padding: 0 20px;
	}

	.cta-form-wrapper {
		width: 100%;
		border-radius: 0;
	}
}

/***********************/
/***********************/
@media (max-width: 420px) {
	/* General Sizing/Margin/Padding Adjustments */
	#about,
	#destinations,
	#areas,
	#cta,
	.footer-content-wrapper {
		padding: 30px 0;
	}

	.footer-content-wrapper {
		margin-top: 60px;
	}

	section > h2,
	section > p,
	.about-card__text {
		margin: 10px 15px;
	}

	.about-card__text {
		padding: 0;
	}

	.about-card__data {
		padding: 10px 16px;
	}

	.about-card__experience {
		padding: 10px 10px 25px 10px;
	}

	/* Header changes */
	.header-text h1 {
		font-size: 2.8rem;
	}

	header .container {
		padding: 100px 10px;
	}

	.airport-code {
		font-size: 3.2rem;
	}

	aside {
		display: none;
	}

	/* Header Loading Animation */
	.loading-dots {
		top: 60%;
	}

	/* Experience: Food gallery hover text */
	.caption-hover {
		letter-spacing: 0.04rem;
	}

	/* Experience: Entertainment Changes */
	.entertainment-card-wrapper {
		grid-template-columns: 1fr;
	}

	.entertainment-card:nth-of-type(1),
	.entertainment-card:nth-of-type(4),
	.entertainment-card:nth-of-type(5),
	.entertainment-card:nth-of-type(8) {
		grid-column: span 1;
	}

	/* Destination Card Changes */
	.destination-card-wrapper {
		padding: 30px 20px;
	}

	.destination-map,
	.destination-img {
		height: 225px;
	}

	.destination-card__content {
		text-align: center;
	}

	.destination-card__footer {
		flex-direction: column;
		gap: var(--gap-sm);
	}

	/* Area & Hotel changes */
	.hotel-card-wrapper,
	.area-card {
		width: 100%;
	}

	.area-card__intro p,
	p {
		font-size: 0.9rem;
	}

	.hotel-card-buttons-wrapper ul {
		grid-template-columns: 1fr 1fr;
		gap: 2px;
	}

	.hotel-card-buttons-wrapper li:last-child {
		/* 
		Adds the last button to the center:
		grid-column: span 2;
		margin: 0 auto; */

		display: none;
	}
}
