
/* --- Variables & Reset --- */
:root {
--primary-color: #800000; /* Maroon */
--secondary-color: #DAA520; /* Gold */
--text-color: #333;
--light-bg: #f9f9f9;
--white: #ffffff;
--font-heading: 'Playfair Display', serif;
--font-body: 'Poppins', sans-serif;
}

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

body {
font-family: var(--font-body);
color: var(--text-color);
line-height: 1.6;
background-color: var(--white);
}

h1, h2, h3, h4 {
font-family: var(--font-heading);
color: var(--primary-color);
}

a {
text-decoration: none;
color: inherit;
transition: 0.3s;
}

ul {
list-style: none;
}

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

/* --- Layout Classes --- */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.section {
padding: 60px 0;
}

.bg-light {
background-color: var(--light-bg);
}

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

.mt-30 {
margin-top: 30px;
}

.section-title {
font-size: 2.5rem;
margin-bottom: 10px;
position: relative;
display: inline-block;
}

.section-subtitle {
font-size: 1.2rem;
color: var(--secondary-color);
margin-bottom: 20px;
font-weight: 600;
}

/* --- Header & Nav --- */
header {
background-color: var(--white);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
padding: 15px 0;
}

header .container {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo h1 {
font-size: 1.8rem;
color: var(--primary-color);
font-weight: 700;
}

.nav-links {
display: flex;
gap: 25px;
}

.nav-links a {
font-weight: 500;
color: var(--text-color);
font-size: 1rem;
}

.nav-links a:hover, .nav-links a.active {
color: var(--primary-color);
border-bottom: 2px solid var(--secondary-color);
}

.hamburger {
display: none;
font-size: 1.5rem;
cursor: pointer;
}

/* --- Hero Section --- */
.hero {
height: 80vh;
background: url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
position: relative;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: var(--white);
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
}

.hero-content {
position: relative;
z-index: 2;
padding: 20px;
}

.hero-content h1 {
color: var(--secondary-color);
font-size: 3.5rem;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
font-size: 1.2rem;
margin-bottom: 30px;
color: #f1f1f1;
}

/* --- Buttons --- */
.btn {
padding: 12px 30px;
border-radius: 5px;
font-weight: 600;
cursor: pointer;
display: inline-block;
margin: 5px;
}

.btn-primary {
background-color: var(--primary-color);
color: var(--white);
border: 2px solid var(--primary-color);
}

.btn-primary:hover {
background-color: transparent;
color: var(--primary-color);
background: var(--white);
}

.btn-secondary {
background-color: transparent;
color: var(--white);
border: 2px solid var(--white);
}

.btn-secondary:hover {
background-color: var(--white);
color: var(--primary-color);
}

/* --- Services Grid --- */
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 40px;
}

.service-card {
background: var(--white);
padding: 30px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.3s;
border-top: 4px solid var(--secondary-color);
}

.service-card:hover {
transform: translateY(-10px);
}

.service-card i {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 20px;
}

/* --- Page Header --- */
.page-header {
background: var(--primary-color);
padding: 60px 0;
text-align: center;
}

.page-header h1 {
color: var(--secondary-color);
font-size: 3rem;
}

/* --- About Page --- */
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}

.about-image img {
border-radius: 10px;
box-shadow: 10px 10px 0 var(--secondary-color);
}

.feature-list li {
margin-bottom: 10px;
font-size: 1.1rem;
}

.feature-list i {
color: var(--secondary-color);
margin-right: 10px;
}

/* --- Services Page Detailed --- */
.services-grid-large {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.service-item {
background: var(--white);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-item img {
width: 100%;
height: 250px;
object-fit: cover;
}

.service-info {
padding: 20px;
}

.service-info h2 {
font-size: 1.5rem;
margin-bottom: 10px;
}

/* --- Gallery & Lightbox --- */
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}

.gallery-item img {
width: 100%;
height: 300px;
object-fit: cover;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}

.gallery-item img:hover {
opacity: 0.8;
}

.lightbox {
display: none;
position: fixed;
z-index: 2000;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.9);
justify-content: center;
align-items: center;
}

.lightbox-content {
max-width: 90%;
max-height: 80vh;
}

.close-lightbox {
position: absolute;
top: 20px;
right: 40px;
color: #fff;
font-size: 40px;
cursor: pointer;
}

/* --- Contact Page --- */
.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}

.info-item {
display: flex;
align-items: flex-start;
margin-bottom: 25px;
}

.info-item i {
font-size: 1.5rem;
color: var(--secondary-color);
margin-right: 15px;
margin-top: 5px;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 5px;
font-weight: 500;
}

.form-group input, .form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
font-family: inherit;
}

/* --- Footer --- */
footer {
background-color: #222;
color: #fff;
padding-top: 50px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
padding-bottom: 40px;
}

.footer-col h3 {
color: var(--secondary-color);
margin-bottom: 20px;
font-size: 1.4rem;
}

.footer-col ul li {
margin-bottom: 10px;
}

.footer-col ul li a:hover {
color: var(--secondary-color);
}

.footer-bottom {
background-color: #111;
text-align: center;
padding: 20px;
font-size: 0.9rem;
}

/* --- Floating Buttons --- */
.float-btn {
position: fixed;
bottom: 30px;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 24px;
z-index: 999;
box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.whatsapp {
right: 30px;
background-color: #25d366;
}

.call {
left: 30px;
background-color: #007bff;
}

.video-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
height: 0;
margin-top: 20px;
}

.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
.nav-links {
position: absolute;
right: 0;
top: 60px;
background: var(--white);
flex-direction: column;
width: 100%;
text-align: center;
padding: 20px 0;
display: none;
box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.nav-links.active {
display: flex;
}

.hamburger {
display: block;
color: var(--primary-color);
}

.hero-content h1 {
font-size: 2.2rem;
}

.about-content, .contact-wrapper {
grid-template-columns: 1fr;
}

.page-header h1 {
font-size: 2.2rem;
}
}
