/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #996515;
    --black: #1a1a1a;
    --off-black: #0a0a0a;
    --white: #ffffff;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--off-black);
    color: var(--white);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Sticky Logo */
.sticky-logo {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid var(--gold);
    z-index: 1000;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 5px;
    font-weight: 700;
}

/* Hero Section */
.hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), 
                url('img/head.webp');
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 50px;
}

.btn-gold {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--black);
}

.about {
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.about h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.about p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
}

.about img {
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
/* Services */
.services {
    padding: 30px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card img {
    width: 130px; /* Make image fit container */
    max-height: 200px;
    border-radius: 8px; /* Optional: rounded image corners */
    margin: 0 0 5px -220px;
}

.service-card {
    max-width: 370px; /* Reduce overall width */
    max-height: 110px;
    margin: 5px auto; /* Center the section */
    padding: 15px 0; /* Reduce padding */
    text-align: center;
    background-color: #1a1a1a; /* Same dark background */
    border-radius: 10px; /* Optional: rounded corners */
    margin-bottom: 10px;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.service-card h3 {
    font-size: 18px; /* Reduce heading size */
    margin: -80px 0 0 150px;
    color: #f8c12e; /* Keep yellow color */
}

.service-card p{
    font-size: 12px; /* Reduce paragraph size */
    color: #ffffff;
    margin: 0 0 0 150px;
}

.reviews h2{
    text-align: center;
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    margin-top: 15px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    font-family: 'Raleway', sans-serif;
    padding: 20px;
}

.review-box{
    background: #111;
    border: 1px solid var(--gold);
    padding: 20px;
}

.review-box p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.8;
    max-width: 800px;
    margin: auto;
}

.review-box h4{
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
}

/* Contact & Sticky Buttons */
.contact {
    padding: 40px 20px;
    text-align: center;
    background: #000;
    padding-bottom: 50px;
}

/* Map Styling */
.map-wrapper {
    position: relative;
    border: 2px solid var(--gold); /* Gold border for the map */
    padding: 5px;
    background: var(--black);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    line-height: 0;
    gap: 20px; /* Removes gap at bottom of iframe */
}

/* Adjusting padding for footer to ensure sticky buttons don't block text */
footer {
    padding-bottom: 100px; 
}

.sticky-actions {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1001;
    width: 100%;
    max-width: 500px;
    background: #000;
    padding: 10px;
}

.action-btn {
    flex: 1;
    padding: 6px;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.call { background-color: #cfa10a; }
.whatsapp { background-color: #25D366; }

footer {
    text-align: center;
    padding: 40px;
    font-size: 0.8rem;
    color: #666;
}