/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		Oxygen, Ubuntu, Cantarell, sans-serif;
	background-color: #f5f5f5;
	padding-top: 80px;
	padding-bottom: 80px;
}

/* Sticky Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	padding: 20px;
}

.header-content {
	max-width: 1200px;
	margin: 0 auto;
}

.logo-section {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo-img {
	display: block;
	height: 27px;
	width: auto;
}

.tagline {
	font-family: "Lato", sans-serif;
	font-size: 16px;
	font-weight: 300;
	color: #666;
	font-style: italic;
}

/* Main Content */
.main-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.section {
	margin-bottom: 50px;
}

.section-title {
	font-family: "Bebas Neue", cursive;
	font-size: 48px;
	font-weight: 400;
	letter-spacing: 2px;
	color: #333;
	margin-bottom: 25px;
	text-transform: uppercase;
}

.grid-container {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, 1fr);
}

/* Card Styles */
.card {
	display: block;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background-color: #e0e0e0;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Portrait Cards (4:5 ratio) */
.card-portrait {
	aspect-ratio: 4 / 5;
}

/* Square Cards (1:1 ratio) */
.card-square {
	aspect-ratio: 1 / 1;
}

/* Sticky Footer */
.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #ffffff;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	padding: 15px;
}

.social-links {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 30px;
}

.social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: #f5f5f5;
	color: #333;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-btn:hover {
	background-color: #ff6b6b;
	color: #ffffff;
	transform: scale(1.1);
}

/* iPad (Tablet) - 2 columns */
@media screen and (max-width: 1024px) and (min-width: 481px) {
	body {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.header {
		padding: 15px;
	}

	.logo-section {
		gap: 12px;
	}

	.logo-img {
		height: 24px;
	}

	.tagline {
		font-size: 14px;
	}

	.main-content {
		padding: 15px;
	}

	.section {
		margin-bottom: 40px;
	}

	.section-title {
		font-size: 40px;
		margin-bottom: 20px;
	}

	.grid-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.social-links {
		gap: 25px;
	}

	.social-btn {
		width: 44px;
		height: 44px;
	}
}

/* iPhone (Mobile) - 1 column */
@media screen and (max-width: 480px) {
	body {
		padding-top: 90px;
		padding-bottom: 70px;
	}

	.header {
		padding: 15px;
	}

	.logo-section {
		gap: 10px;
	}

	.logo-img {
		height: 22px;
	}

	.tagline {
		font-size: 13px;
	}

	.main-content {
		padding: 10px;
	}

	.section {
		margin-bottom: 35px;
	}

	.section-title {
		font-size: 36px;
		margin-bottom: 15px;
		letter-spacing: 1px;
	}

	.grid-container {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.social-links {
		gap: 20px;
	}

	.social-btn {
		width: 40px;
		height: 40px;
	}

	.social-btn svg {
		width: 20px;
		height: 20px;
	}
}
