@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Inter:wght@300;400;600&display=swap');

/* ==========================================================
   VARIABLES
========================================================== */
:root {
	--primary-color: #b88935;
	--primary-dark: #a3732a;
	--text-color: #111213;
	--subtext-color: #6b6b6b;
	--card-shadow: rgba(17,18,19,0.06);

	--spacing-sm: 12px;
	--spacing-md: 18px;
	--spacing-lg: 28px;
	--spacing-xl: 30px;

	--container-bg-alpha: 0.5; /* 1 = opaque, 0 = transparent */
}

/* ==========================================================
   BASE STYLES
========================================================== */
* { box-sizing: border-box; }
body {
	font-family: 'Inter', sans-serif;
	color: var(--text-color);
	margin: 0;
	padding: 0;
	line-height: 1.45;
}
body::before {
	content: "";
	position: fixed;
	inset: 0;
	background: url('background.png') center/cover no-repeat;
	opacity: 0.9;
	z-index: -1;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

/* Container backgrounds */
.container,
.card,
.info-card,
.featured-card,
.booking-form {
	background-color: rgba(255, 255, 255, var(--container-bg-alpha));
}

/* ==========================================================
   LAYOUT
========================================================== */
.container { 
	max-width: 1100px; 
	margin: 0 auto; 
	padding: var(--spacing-lg); 
}

/* ==========================================================
   HEADER
========================================================== */
header {
  position: sticky;
  top: 28px;
  z-index: 1000;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.5);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  margin: 0 auto;
  width: 95%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden; /* Needed for pseudo-elements */
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-blend-mode: lighten;
  z-index: 2;
}

.brand { display: flex; align-items: center; gap: var(--spacing-sm); }

.logo-box {
	width: 80px;
	height: 80px;
	border: 2px solid var(--primary-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	box-shadow:
		0 0 8px rgba(209,177,90,0.4),
		inset 0 0 8px rgba(209,177,90,0.3);
	animation: logo-glow 3s ease-in-out infinite alternate;
}
@keyframes logo-glow {
	from {
		box-shadow:
			0 0 6px rgba(209,177,90,0.3),
			inset 0 0 4px rgba(209,177,90,0.2);
	}
	to {
		box-shadow:
			0 0 16px rgba(209,177,90,0.8),
			inset 0 0 10px rgba(209,177,90,0.4);
	}
}

.site-name {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
	margin: 0;
	font-size: 18px;
}
.site-sub { margin: 0; color: var(--subtext-color); font-size: 13px; }
nav { display: flex; gap: var(--spacing-sm); align-items: center; }

/* ==========================================================
   HERO
========================================================== */
.hero {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 80px 20px;
	margin-top: var(--spacing-lg);
	position: relative;
	border-radius: 0; /* ensure image corners are square */
	overflow: visible;

	background: url("piano.jpg") bottom/cover no-repeat;
	color: #fff;
}

/* white overlay */
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.85);
	z-index: 0;
	border-radius: 0; /* make sure overlay doesn’t clip image */
}

/* top + bottom glowing gold bars */
.hero::after {
	content: "";
	position: absolute;
	inset: 0; /* replaces left: 0, width: 100%, height: 100% */
	border: 4px solid;
	border-image: linear-gradient(135deg, #b1975b, #d8c27d) 1;
	border-radius: 16px;
	z-index: 1;
	pointer-events: none;
	animation: glow-animation 3s ease-in-out infinite;
	box-sizing: border-box; /* ensures borders are measured inside */
}


.hero-content {
	position: relative;
	z-index: 2; /* keeps text above overlay and lines */
	max-width: 700px;
}

.hero h2 {
	font-family: 'Rajdhani', sans-serif;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--primary-dark);
}

.hero p {
	font-size: 16px;
	color: var(--subtext-color);
	margin-bottom: 24px;
	line-height: 1.5;
}

/* optional glow animation */
@keyframes glow-animation {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.6;
	}
}

/* ==========================================================
   BUTTONS
========================================================== */
.btn {
	display: inline-block;
	padding: 10px 16px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	transition: background 0.25s ease;
}
.btn:hover { background-color: var(--primary-dark); }

.btn-secondary {
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid #eee;
	color: var(--subtext-color);
	transition: background 0.25s ease, color 0.25s ease;
}
.btn-secondary:hover { background-color: #f5f5f5; }

.hero .btn {
	background: linear-gradient(135deg, #b1975b, #d8c27d);
	color: #fff;
	padding: 12px 20px;
	animation: glow-animation 3s ease-in-out infinite;
}

.header .btn {
	background: linear-gradient(135deg, #b1975b, #d8c27d);
	color: #fff;
	padding: 6px 10px;
	animation: glow-animation 3s ease-in-out infinite;
}

/* ==========================================================
   INFO CARD
========================================================== */
.info-card {
	border-radius: 14px;
	box-shadow: 0 8px 30px var(--card-shadow);
	padding: var(--spacing-md);
}
.info-label { font-size: 13px; color: var(--subtext-color); }
.info-value { font-weight: 600; margin: 4px 0 10px 0; }
.contact-btns { display: flex; gap: 8px; margin-top: 12px; }

/* ==========================================================
   PACKAGES & CARDS
========================================================== */
.section { margin-top: var(--spacing-lg); }
.packages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

h2 {
	text-align: center;
}
.card {
	border: 1px solid #e2e2e2;
	border-radius: 16px;
	padding: var(--spacing-xl);
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 30px rgba(0,0,0,0.1);
}
.card h3 {
	color: var(--primary-color);
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 10px;
}
.price { font-size: 1.4rem; font-weight: 700; margin-bottom: 1px; }
.subtitle { font-style: italic; font-size: 0.8rem; margin-bottom: 1px; color: #555; }
.features li { padding: 8px 0; border-bottom: 1px solid #eee; }
.features li:last-child { border-bottom: none; }

/* ==========================================================
   FEATURED CARD
========================================================== */
.featured-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4px;
	border-radius: 18px;
	margin-top: var(--spacing-lg);
}
.featured-card {
	position: relative;
	border: 4px solid var(--primary-color);
	border-radius: 16px;
	max-width: 850px;
	width: 100%;
	padding: 20px;
	box-shadow: 0 6px 30px rgba(177,151,91,0.25);
	text-align: center;
	z-index: 1;
	background-color: rgba(255,255,255,var(--container-bg-alpha));
}

.featured-card:hover {
	box-shadow: 0 0 40px rgba(184, 137, 53, 0.45); /* slightly stronger on hover */
}

.featured-card h3 {
  margin-top: 4px;     
  margin-bottom: 4px;  
  font-size: 36px;     
}
.featured-card .price {
  margin: 4px 0;
  font-size: 28px;
}
.featured-card .subtitle {
  margin: 4px 0 12px 0; 
}

@keyframes gold-glow {
	0%, 100% {
		box-shadow: 0 0 12px rgba(184, 137, 53, 0.3);
	}
	50% {
		box-shadow: 0 0 36px rgba(184, 137, 53, 0.75);
	}
}

.featured-card {
	animation: gold-glow 5s ease-in-out infinite;
}


/* ==========================================================
   BADGES
========================================================== */
.badge {
	display: inline-block;
	background-color: #b1975b;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 15px;
	letter-spacing: 0.5px;
	animation: glow-animation 3s ease-in-out infinite;
}

/* ==========================================================
   ABOUT / TESTIMONIALS
========================================================== */
.about-contact { margin-top: var(--spacing-lg); }
.about-text, .about-list li { color: var(--subtext-color); }
.about-text { margin-bottom: 10px; }
.about-list li { margin-top: 6px; }

.test-grid { display: grid; gap: 12px; margin-top: 12px; }
.testimonial {
	padding: 14px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 8px 30px var(--card-shadow);
	font-size: 14px;
	color: var(--subtext-color);
}
.testimonial-author { margin-top: 8px; font-weight: 600; color: #222; }

.about-wrapper {
  display: block;       /* Default flow layout, no flex here */
  overflow: auto;       /* Ensure proper clearance of floats */
}

.about-photo img {
  float: left;          /* Allow text to wrap around this image */
  width: 300px;         /* Adjust as needed */
  height: auto;
  margin: 15px 20px -5px 0;  /* Right & bottom margins for breathing room */
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 4px solid var(--primary-color);
}

.about-texts {
  font-size: 16px;
  line-height: 1.6;
  color: var(--subtext-color);
}

/* Responsive layout: stack image above text on small screens */
@media (max-width: 725px) {
  .about-photo img {
    width: 180px;
  }
}

/* ==========================================================
   FAQ SECTION
========================================================== */
.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 28px;
	margin-top: var(--spacing-lg);
}
.faq-grid .card h3 {
	margin-bottom: 10px;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
}
.faq-grid .card p {
	color: var(--subtext-color);
	font-size: 0.95rem;
	line-height: 1.5;
}

/* ==========================================================
   FAQ ACCORDION
========================================================== */
.faq-list {
	margin-top: var(--spacing-lg);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.faq-item {
	background: rgba(255, 255, 255, var(--container-bg-alpha));
	border: 1px solid #e2e2e2;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	overflow: hidden;
	transition: box-shadow 0.25s ease;
}

.faq-item:hover {
	box-shadow: 0 6px 30px rgba(0,0,0,0.1);
}

.faq-question {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	outline: none;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--primary-color);
	padding: var(--spacing-md);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: color 0.25s ease, background 0.25s ease;
}

.faq-question::after {
	content: "+";
	font-size: 1.4rem;
	color: var(--primary-color);
	transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question::after {
	transform: rotate(45deg);
	color: var(--primary-dark);
}

.faq-question:hover {
	background: rgba(184,137,53,0.05);
	color: var(--primary-dark);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 var(--spacing-md);
	transition: max-height 0.4s ease, padding 0.3s ease;
	color: var(--subtext-color);
	line-height: 1.5;
	font-size: 0.95rem;
}

.faq-item.active .faq-answer {
	max-height: 500px
	padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
}


/* ==========================================================
   FOOTER
========================================================== */
footer {
	margin-top: 30px;
	padding-top: 18px;
	border-top: 1px solid rgba(0,0,0,0.06);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px;
}
.footer-note,
.footer-contact {
	font-size: 13px;
	color: var(--subtext-color);
}
.footer-contact {
	display: flex;
	gap: 18px;
	align-items: center;
}

/* ==========================================================
   RESPONSIVE HEADER
========================================================== */
/* Small screens: hide text and nav, center logo + button */
@media (max-width: 500px) {
	.site-name,
	.site-sub,
	nav {
		display: none;
	}

	header {
		display: flex;
		justify-content: center;  /* Center the brand container itself */
		align-items: center;
		padding: 10px 20px;
	}

	.brand {
		display: flex;
		align-items: center;
		justify-content: center;  /* Center logo & button inside */
		gap: 12px;                /* Space between logo & button */
		margin: 0;                /* Remove extra margin */
		padding: 0;
		flex-wrap: nowrap;         /* Prevent wrapping */
	}

	.brand .btn {
		white-space: nowrap;       /* Prevent text from wrapping */
		padding: 6px 12px;
		font-size: 13px;
		margin: 0;
	}

	.logo-box {
		width: 60px;
		height: 60px;
		margin: 0;
	}
}


/* ==========================================================
   BOOKING FORM
========================================================== */
.booking-form {
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	max-width: 500px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}
.booking-form fieldset {
	border: 2px solid #b1975b;
	border-radius: 12px;
	padding: 1rem;
	animation: glow-animation 3s ease-in-out infinite;
}
.booking-form label,
.booking-form legend {
	font-weight: 600;
	margin-bottom: 0.4rem;
	color: #333;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
}
.booking-form input,
.booking-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	color: #333;
	background-color: #fafafa;
	transition: all 0.3s ease;
	resize: vertical;
}
.booking-form input:focus,
.booking-form textarea:focus {
	border-color: #b1975b;
	background-color: #fff;
	box-shadow: 0 0 6px rgba(177,151,91,0.4);
	outline: none;
}
.booking-form .btn {
	align-self: flex-start;
	background: linear-gradient(135deg, #b1975b, #d8c27d);
	color: #fff;
	padding: 0.8rem 1.6rem;
	border: none;
	border-radius: 8px;
	cursor: pointer;
}

/* ==========================================================
   RADIO GROUPS
========================================================== */
.radio-group {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	margin-top: 0.4rem;
}
.radio-group label {
	display: flex !important;
	align-items: center;
	gap: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--text-color);
	cursor: pointer;
	margin: 0;
	width: 100%;
}
.radio-group input[type="radio"] {
	width: 18px;
	height: 18px;
	margin: 0;
	padding: 0;
	flex-shrink: 0;
}
.radio-group label div {
	display: flex;
	flex-direction: column;
}
.option-subtitle {
	display: block;
	font-size: 0.85rem;
	color: var(--subtext-color);
	margin-top: 2px;
	font-style: italic;
}

/* ==========================================================
   FORM SECTION TITLES
========================================================== */
.form-section-title {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 32px;
	margin-bottom: 12px;
	position: relative;
	display: inline-block;
}
.form-section-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, var(--primary-color), rgba(209,177,90,0.2));
	border-radius: 1px;
}
.booking-form .form-section-title:first-of-type { margin-top: 0px; }

/* ==========================================================
   ANIMATIONS
========================================================== */
@keyframes glow-animation {
	0%, 100% { box-shadow: 0 0 6px rgba(209,177,90,0.4); }
	50% { box-shadow: 0 0 12px rgba(209,177,90,0.9); }
}
@keyframes text-gold-glow {
	0%, 100% {
		text-shadow:
			0 0 6px rgba(209,177,90,0.2),
			0 0 12px rgba(209,177,90,0.15),
			0 0 20px rgba(209,177,90,0.1);
	}
	50% {
		text-shadow:
			0 0 10px rgba(209,177,90,0.9),
			0 0 20px rgba(209,177,90,0.6),
			0 0 30px rgba(209,177,90,0.4);
	}
}

/* Auto-apply subtle gold text glow */
.hero h2,
.section-title,
.card h3,
.featured-card h3,
.featured-card price
.logo-box,
.booking-form legend {
	color: var(--primary-color);
	animation: text-gold-glow 6s ease-in-out infinite;
}

.cta-container {
	text-align: center;
	margin-top: 2rem;
}

.cta-button {
	background: linear-gradient(135deg, #b1975b, #d8c27d);
	color: #fff;
	padding: 12px 20px;
	animation: glow-animation 3s ease-in-out infinite;
	border-radius: 8px;
}

.cta-button:hover {
	background-color: var(--primary-dark);
	transform: translateY(-2px);
}