/* --- GLOBAL STYLES & FONTS --- */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

a {
    color: #4dabf7; /* A nice accent blue */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a5d8ff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.content-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.alternate-bg {
    background-color: #1a1a1a;
}

/* --- HEADER & NAVIGATION --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 30px;
}

nav a {
    color: #e0e0e0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

nav a:hover, nav a.active {
    color: #fff;
    border-bottom-color: #4dabf7;
}


/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the image cover the area without distortion */
    opacity: 0.4;
}

.hero-text {
    position: relative; /* To make it appear above the image overlay */
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* --- BUTTONS --- */
.cta-button {
    background-color: #4dabf7;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3690da;
    color: #fff;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #555;
    color: #e0e0e0;
}

.cta-button.secondary:hover {
    background-color: #555;
    color: #fff;
}

/* --- GALLERY GRID --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.gallery-item img {
    width: 100%;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 30px 20px 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    text-align: left;
    transition: background 0.3s ease;
}

/* --- SERVICE INTRO SECTION --- */
.service-intro {
    display: flex;
    align-items: center;
    gap: 50px;
}
.service-image { flex: 1; }
.service-image img { border-radius: 5px; }
.service-text { flex: 1; }
.service-text ul { list-style: none; padding: 0; margin: 20px 0; }
.service-text li { margin-bottom: 10px; }

/* --- TESTIMONIALS --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.testimonial {
    background-color: #1a1a1a;
    padding: 30px;
    border-left: 4px solid #4dabf7;
    border-radius: 5px;
}
.testimonial blockquote {
    margin: 0 0 15px 0;
    font-style: italic;
    font-size: 1.1rem;
}
.testimonial cite {
    font-weight: 700;
    font-style: normal;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 40px 5%;
    margin-top: 60px;
    border-top: 1px solid #333;
}
.footer-links {
    margin-top: 10px;
}
.footer-links a {
    margin: 0 15px;
    color: #aaa;
}
.footer-links a:hover {
    color: #fff;
}

/* --- RESPONSIVE DESIGN FOR SMALLER SCREENS --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    header { flex-direction: column; }
    nav ul { margin-top: 15px; }
    nav li { margin: 0 10px; }

    .service-intro { flex-direction: column; }
    .testimonial-grid { grid-template-columns: 1fr; }
}