/* ==========================================================================
   TOKENS & VARIABLES (DESIGN SYSTEM)
   ========================================================================== */
:root {
	/* Colors */
	--bg-dark: #0a0a0a;
	--bg-card: #141414;
	--accent: #d4af37;
	--accent-light: #f1c40f;
	--text-main: #ffffff;
	--text-dim: #a0a0a0;

	/* Layout */
	--transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	--border-radius: 4px;
	--container-padding: 8%;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Montserrat", sans-serif;
	background-color: var(--bg-dark);
	color: var(--text-main);
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.section-padding {
	padding: 100px var(--container-padding);
}

.title-center {
	text-align: center;
	margin-bottom: 60px;
}

.title-center h2 {
	font-family: "Playfair Display", serif;
	font-size: 2.5rem;
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
}

.title-center h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background: var(--accent);
}

.text-accent {
	color: var(--accent);
}
.text-dim {
	color: var(--text-dim);
}
.text-center {
	text-align: center;
}
.w-100 {
	width: 100%;
}
.opacity-50 {
	opacity: 0.5;
}
.grid-full-width {
	grid-column: 1 / -1;
}

.mb-25 {
	margin-bottom: 25px;
}
.mt-15 {
	margin-top: 15px;
}
.mt-20 {
	margin-top: 20px;
}
.mt-50 {
	margin-top: 50px;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Buttons */
.btn-cta {
	background: var(--accent);
	color: #000;
	padding: 18px 35px;
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.85rem;
	transition: var(--transition);
	display: inline-block;
	border: none;
	cursor: pointer;
	text-align: center;
}

.btn-cta:hover {
	background: var(--accent-light);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Photo Frames */
.photo-frame {
	width: 100%;
	border: 1px solid var(--accent);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1a1a1a;
	z-index: 1;
	overflow: hidden;
}

.photo-frame::after {
	content: "";
	position: absolute;
	top: 20px;
	left: 20px;
	width: 100%;
	height: 100%;
	border: 1px solid rgba(212, 175, 55, 0.3);
	z-index: -1;
}

.profile-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

/* Cards */
.card {
	padding: 45px;
	background: #1a1a1a;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: var(--transition);
}

.card:hover {
	border-color: var(--accent);
	transform: translateY(-10px);
	background: #1f1f1f;
}

.card h3 {
	font-family: "Playfair Display", serif;
	margin-bottom: 15px;
	font-size: 1.5rem;
	color: var(--accent);
}

.card p {
	color: var(--text-dim);
	font-size: 0.95rem;
}

/* WhatsApp Float */
.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 30px;
	right: 30px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	z-index: 10000;
	text-decoration: none;
	transition: all 0.3s ease;
}

.whatsapp-float:hover {
	transform: scale(1.1) rotate(10deg);
	background-color: #20ba5a;
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

/* Header */
header {
	padding: 20px var(--container-padding);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(10, 10, 10, 0.95);
	border-bottom: 1px solid rgba(212, 175, 55, 0.15);
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
}

.logo {
	font-family: "Playfair Display", serif;
	font-size: 1.4rem;
	color: var(--accent);
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	text-decoration: none;
	scale: 300%;
}

.logo-img {
	max-height: 120px;
	width: auto;
	display: block;
}

.footer-logo {
	margin-bottom: 30px;
	display: block;
	transform: scale(2.5);
	transform-origin: left center;
}

.footer-logo .logo-img {
	max-height: 160px;
	width: auto;
	height: auto;
}

.main-nav {
	display: flex;
	gap: 20px;
	align-items: center;
}

.nav-link {
	color: var(--text-main);
	text-decoration: none;
	font-size: 0.8rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 600;
	position: relative;
}

.nav-link::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	right: 0;
	background-color: var(--accent);
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.header-btn {
	padding: 10px 20px;
	font-size: 0.75rem;
}

/* Footer */
footer {
	padding: 80px var(--container-padding) 40px;
	border-top: 1px solid rgba(212, 175, 55, 0.1);
	background: var(--bg-dark);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 50px;
	margin-bottom: 50px;
}

.footer-col h4 {
	color: var(--accent);
	margin-bottom: 25px;
	font-family: "Playfair Display", serif;
	font-size: 1.2rem;
}

.footer-col p,
.footer-col li {
	color: var(--text-dim);
	font-size: 0.9rem;
	list-style: none;
	margin-bottom: 12px;
}

.footer-link {
	color: var(--text-dim);
	text-decoration: none;
	font-size: 0.9rem;
}

.map-container {
	border: 1px solid var(--accent);
	height: 150px;
	overflow: hidden;
}

.map-iframe {
	border: 0;
	filter: grayscale(100%) invert(90%) contrast(90%);
}

.footer-bottom {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 30px;
}

.footer-bottom p {
	opacity: 0.4;
	font-size: 0.75rem;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 992px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	:root {
		--container-padding: 5%;
	}

	header {
		flex-direction: column;
		gap: 15px;
		text-align: center;
		padding: 15px var(--container-padding);
	}

	.main-nav {
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px 20px;
	}

	.section-padding {
		padding: 60px var(--container-padding);
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 600px) {
	.whatsapp-float {
		width: 50px;
		height: 50px;
		bottom: 20px;
		right: 20px;
		font-size: 25px;
	}
}

@media (max-width: 480px) {
	.logo {
		font-size: 1.1rem;
	}

	.nav-link {
		font-size: 0.7rem;
	}

	.header-btn {
		padding: 8px 15px;
		font-size: 0.7rem;
	}
}
