/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #d4af37;
    --dark-bg: #121212;
    --light-bg: #ffffff;
    --text-dark: #333333;
    --text-light: #f4f4f4;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--dark-bg);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    transition: color 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-links li a:hover {
    color: var(--primary-gold);
}

.cta-btn {
    padding: 8px 20px;
    background: var(--primary-gold);
    color: var(--dark-bg) !important;
    border-radius: 5px;
    font-weight: 600;
}

/* --- Hero Section --- */
/* --- Hero Section (Top Banner) --- */
.hero {
    /* Height: 100vh means it covers 100% of the screen height */
    height: 100vh; 
    
    /* This adds a dark tint over the image so the white text pops */
    /* REPLACE 'banner.jpg' with your actual file name if different */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('banner.jpg');
    
    /* This ensures the image covers the whole area without stretching weirdly */
    background-size: cover; 
    
    /* This keeps the image centered */
    background-position: center; 
    
    /* Flexbox centers the text in the middle of the banner */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    
    /* Adjust for the fixed navbar so content doesn't hide behind it */
    padding-top: 60px; 
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.main-btn {
    padding: 12px 30px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
    display: inline-block;
}

.main-btn:hover {
    transform: scale(1.05);
    background: #fff;
}

/* --- Common Section Styles --- */
.section-padding {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.dark-bg {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.text-white {
    color: white;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 10px 10px 0px var(--primary-gold);
}

.features-list li {
    margin: 10px 0;
    font-size: 1.1rem;
}

.features-list i {
    color: var(--primary-gold);
    margin-right: 10px;
}

/* --- Services Section --- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
    border-bottom: 3px solid var(--primary-gold);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: white;
}

.service-card p {
    color: #ccc;
    font-size: 0.9rem;
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    transition: opacity 0.3s;
}

.gallery-grid img:hover {
    opacity: 0.8;
}

/* --- Contact Section --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info i {
    color: var(--primary-gold);
    margin-right: 10px;
    width: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-family: inherit;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: 2px solid var(--primary-gold);
}

/* --- Footer --- */
footer {
    background: #000;
    color: #666;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1; /* Image on top for mobile */
    }

}
