/* ================================================
   LUCAYA GEMZ - Luxury Caribbean Jewelry
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Raleway:wght@300;400;500;600&display=swap');

:root {
	--midnight: #0c1821;
	--ocean: #1b4965;
	--teal: #5fa8d3;
	--gold: #caa851;
	--gold-light: #e2c97e;
	--cream: #fefcf6;
	--sand: #f5f1e8;
	--white: #ffffff;
	--charcoal: #2d3436;
	--gray: #636e72;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	color: var(--charcoal);
	line-height: 1.7;
	background: var(--cream);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ================================================
   Hero Section
   ================================================ */
.hero-section {
	min-height: 100vh;
	background-image: url('../img/shutterstock_298103693.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(12, 24, 33, 0.4) 0%,
		rgba(12, 24, 33, 0.6) 100%
	);
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 2rem;
	max-width: 700px;
}

.brand-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 5rem;
	font-weight: 300;
	letter-spacing: 0.3em;
	color: var(--white);
	margin-bottom: 1rem;
	text-shadow: 0 2px 20px rgba(0,0,0,0.3);
	line-height: 6rem;
}

.tagline {
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.3em;
	color: var(--gold-light);
	text-transform: uppercase;
	margin-bottom: 2rem;
}

.coming-soon {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.8rem;
	font-weight: 400;
	font-style: italic;
	color: var(--white);
	margin-bottom: 1.5rem;
}

.hero-description p {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.9);
	margin-bottom: 2.5rem;
}

.scroll-down-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	border: 1px solid var(--gold-light);
	color: var(--gold-light);
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.scroll-down-btn:hover {
	background: var(--gold-light);
	color: var(--midnight);
}

/* ================================================
   Section Styles
   ================================================ */
.section-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	font-weight: 400;
	color: var(--midnight);
	margin-bottom: 1rem;
	letter-spacing: 0.05em;
}

.section-subtitle {
	font-size: 1rem;
	color: var(--gray);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
}

/* ================================================
   Collection Section
   ================================================ */
.collection-section {
	padding: 8rem 0;
	background: var(--sand);
}

.jewelry-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.jewelry-item {
	background: var(--white);
	overflow: hidden;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.jewelry-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.jewelry-item.featured {
	grid-column: span 3;
}

.jewelry-image {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 300px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.jewelry-item.featured .jewelry-image {
	min-height: 400px;
	background: linear-gradient(135deg, var(--ocean) 0%, var(--midnight) 100%);
}

.jewelry-image img {
	height: 300px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.jewelry-item.featured .jewelry-image img {
	max-height: 350px;
	filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.jewelry-item:hover .jewelry-image img {
	transform: scale(1.05);
}

.featured-badge {
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	padding: 0.5rem 1rem;
	background: var(--gold);
	color: var(--white);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.jewelry-item.featured .jewelry-image {
	position: relative;
}

.jewelry-caption {
	padding: 1.5rem;
	text-align: center;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--charcoal);
	border-top: 1px solid #eee;
}

.jewelry-item.featured .jewelry-caption {
	/*background: var(--midnight);*/
	background: linear-gradient(0.25turn, #19425b, #15384d);
	color: var(--white);
	border-top: none;
	font-size: 1.4rem;
}

/* ================================================
   Custom Section
   ================================================ */
.custom-section {
	padding: 8rem 0;
	background: var(--midnight);
}

.custom-section .section-title {
	color: var(--white);
}

.custom-section .section-subtitle {
	color: var(--teal);
}

.custom-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-top: 3rem;
}

.custom-image img {
	width: 100%;
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.custom-text h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	font-weight: 400;
	color: var(--gold-light);
	margin-bottom: 1.5rem;
}

.custom-description {
	font-size: 1rem;
	color: rgba(255,255,255,0.8);
	line-height: 1.9;
	margin-bottom: 2rem;
}

.custom-list {
	list-style: none;
}

.custom-list li {
	padding: 0.75rem 0;
	color: rgba(255,255,255,0.9);
	border-bottom: 1px solid rgba(255,255,255,0.1);
	font-size: 0.95rem;
}

.custom-list li::before {
	content: '—';
	color: var(--gold);
	margin-right: 1rem;
}

/* ================================================
   Lifestyle Section
   ================================================ */
.lifestyle-section {
	padding: 8rem 0;
	background-image: url('../img/shutterstock_1552900790.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}

.lifestyle-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(12, 24, 33, 0.7);
}

.lifestyle-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 0 2rem;
}

.lifestyle-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	font-weight: 400;
	color: var(--white);
	margin-bottom: 2rem;
}

.lifestyle-text {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.9);
	line-height: 2;
	margin-bottom: 1.5rem;
}

.lifestyle-quote {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	font-style: italic;
	color: var(--gold-light);
	margin-top: 2rem;
}

/* ================================================
   Signup Section
   ================================================ */
.signup-section {
	padding: 8rem 0;
	background: var(--cream);
}

.signup-container {
	max-width: 550px;
	margin: 0 auto;
	text-align: center;
	padding: 0 2rem;
}

.signup-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.5rem;
	font-weight: 400;
	color: var(--midnight);
	margin-bottom: 1rem;
}

.signup-subtitle {
	font-size: 1rem;
	color: var(--gray);
	margin-bottom: 2.5rem;
	line-height: 1.8;
}

.email-form {
	margin-top: 2rem;
}

.form-group {
	display: flex;
	gap: 1rem;
}

.email-form input[type="email"] {
	flex: 1;
	padding: 1rem 1.5rem;
	font-size: 1rem;
	font-family: 'Raleway', sans-serif;
	border: 1px solid #ddd;
	background: var(--white);
	outline: none;
	transition: border-color 0.3s;
}

.email-form input[type="email"]:focus {
	border-color: var(--ocean);
}

.submit-btn {
	padding: 1rem 2rem;
	background: var(--ocean);
	color: var(--white);
	border: none;
	font-size: 0.85rem;
	font-weight: 600;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.3s;
}

.submit-btn:hover {
	background: var(--midnight);
}

.statusMsg {
	margin-top: 1rem;
	font-size: 0.9rem;
}

.statusMsg:empty {
	display: none;
}

/* ================================================
   Footer
   ================================================ */
.footer {
	padding: 3rem 2rem;
	background: var(--midnight);
	text-align: center;
}

.footer-brand {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	color: var(--white);
	margin-bottom: 1rem;
}

.footer-content p {
	color: var(--gray);
	font-size: 0.85rem;
}

.footer-link {
	display: inline-block;
	color: var(--gold-light);
	text-decoration: none;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: var(--gold);
}

/* ================================================
   Responsive
   ================================================ */
@media (max-width: 1024px) {
	.jewelry-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.jewelry-item.featured {
		grid-column: span 2;
	}

	.custom-content {
		gap: 3rem;
	}

	.brand-name {
		font-size: 4rem;
	}
}

@media (max-width: 768px) {
	.brand-name {
		font-size: 3rem;
		letter-spacing: 0.15em;
	}

	.tagline {
		font-size: 0.8rem;
		letter-spacing: 0.2em;
	}

	.jewelry-grid {
		grid-template-columns: 1fr;
	}

	.jewelry-item.featured {
		grid-column: span 1;
	}

	.jewelry-item.featured .jewelry-image {
		min-height: 300px;
	}

	.custom-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.section-title,
	.lifestyle-title {
		font-size: 2.2rem;
	}

	.form-group {
		flex-direction: column;
	}

	.submit-btn {
		width: 100%;
	}

	.lifestyle-section {
		background-attachment: scroll;
	}

	.collection-section,
	.custom-section,
	.lifestyle-section,
	.signup-section {
		padding: 5rem 0;
	}
}

@media (max-width: 480px) {
	.brand-name {
		font-size: 2.2rem;
	}

	.section-title,
	.lifestyle-title,
	.signup-title {
		font-size: 1.8rem;
	}

	.custom-text h3 {
		font-size: 1.6rem;
	}

	.jewelry-image {
		min-height: 250px;
		padding: 2rem;
	}
}

/* ================================================
   Contact Page
   ================================================ */

/* Contact Hero */
.contact-hero {
	min-height: 60vh;
	background-image: url('../img/shutterstock_298103693.jpg');
	background-size: cover;
	background-position: center;
}

.contact-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3.5rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	color: var(--white);
	margin-bottom: 1rem;
}

.contact-intro {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.9);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
}

/* CTA Cards Section */
.contact-cta-section {
	padding: 6rem 0;
	background: var(--sand);
}

.cta-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
}

.cta-card {
	background: var(--white);
	padding: 3rem;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.cta-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--midnight);
	margin-bottom: 1rem;
	letter-spacing: 0.05em;
}

.cta-card p {
	font-size: 0.95rem;
	color: var(--gray);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.cta-note {
	display: block;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.5rem;
}

.cta-link {
	display: inline-block;
	padding: 0.875rem 2rem;
	background: var(--ocean);
	color: var(--white);
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: background 0.3s ease;
}

.cta-link:hover {
	background: var(--midnight);
}

/* Contact Form Section */
.contact-form-section {
	padding: 6rem 0;
	background: var(--cream);
}

.contact-form {
	max-width: 650px;
	margin: 0 auto;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.form-field {
	width: 100%;
}

.form-field.full-width {
	margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 1rem 1.25rem;
	font-size: 1rem;
	font-family: 'Raleway', sans-serif;
	border: 1px solid #ddd;
	background: var(--white);
	color: var(--charcoal);
	outline: none;
	transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: var(--gray);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--ocean);
}

.contact-form select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23636e72' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
}

.contact-form textarea {
	resize: vertical;
	min-height: 140px;
}

.form-submit {
	text-align: center;
	margin-top: 0.5rem;
}

.contact-form button {
	padding: 1rem 3rem;
	background: var(--ocean);
	color: var(--white);
	border: none;
	font-size: 0.85rem;
	font-weight: 600;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.3s ease;
}

.contact-form button:hover {
	background: var(--gold);
}

/* Location Section */
.location-section {
	padding: 0;
	background: var(--midnight);
}

.location-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 450px;
}

.location-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 4rem 2rem;
}

.location-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.5rem;
	font-weight: 400;
	color: var(--white);
	margin-bottom: 0.75rem;
	letter-spacing: 0.05em;
}

.location-note {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold-light);
	margin-bottom: 2rem;
}

.location-text address {
	font-style: normal;
	font-size: 1.1rem;
	color: rgba(255,255,255,0.8);
	line-height: 1.8;
}

.location-map {
	position: relative;
}

.location-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
	.contact-hero {
		min-height: 50vh;
	}

	.contact-title {
		font-size: 2.5rem;
	}

	.cta-grid {
		grid-template-columns: 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.location-content {
		grid-template-columns: 1fr;
	}

	.location-text {
		padding: 4rem 2rem;
	}

	.location-map {
		height: 350px;
	}

	.contact-cta-section,
	.contact-form-section {
		padding: 4rem 0;
	}
}

@media (max-width: 480px) {
	.contact-title {
		font-size: 2rem;
	}

	.cta-card {
		padding: 2rem;
	}

	.cta-card h3 {
		font-size: 1.5rem;
	}

	.location-title {
		font-size: 2rem;
	}

	.location-map {
		height: 280px;
	}
}
