/* GENERAL STYLES */
:root {
    --primary-color: #8B0000; /* A deep, rich red */
    --secondary-color: #D4AF37; /* A soft gold */
    --text-color: #333333;
    --bg-light: #f9f6f1;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.content-section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* HEADER */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

/* HERO SECTION */
#hero {
    /* IMPORTANT: Put your best horizontal photo in the 'images' folder and name it 'hero-bg.jpg' */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 70px; /* To offset fixed header */
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #A52A2A; /* A slightly lighter red */
}

/* ABOUT SECTION */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}
.about-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--bg-light);
}
.about-text {
    flex: 1;
}
.about-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* SERVICES SECTION */
h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.service-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* GALLERY SECTION */
.gallery-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* CONTACT SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.contact-details h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 5px;
}
.contact-details .phone-number {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
}
.contact-map iframe {
    border-radius: 5px;
}

/* FOOTER */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }
    nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav ul li {
        margin: 5px 10px;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .content-section {
        padding: 60px 0;
    }
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .services-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
}
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  font-size: 24px;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.floating-contact .call-btn {
  background-color: #007bff; /* Blue for call */
}

.floating-contact a:hover {
  transform: scale(1.1);
}
