/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    background: #0a0a0a;
    color: #f5f5f5;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(20,20,20,0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: crimson;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: crimson;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: crimson;
}

.hero-text h1 {
    font-size: 48px;
    text-shadow: 2px 2px 10px black;
}

.hero-text p {
    font-size: 24px;
    margin: 20px 0;
}

.btn {
    background: crimson;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: darkred;
}

/* Sections */
section {
    padding: 80px 50px;
}

h2 {
    font-size: 36px;
    color: crimson;
    text-align: center;
    margin-bottom: 40px;
}

/* About Section */
#about {
    background: rgba(20, 0, 0, 0.85); /* subtle dark red overlay */
    padding: 80px 50px;
    border-radius: 15px;
    border: 2px solid crimson;
    text-align: center;
}

#about h2 {
    font-size: 40px;
    color: crimson;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px black;
}

#about p {
    font-size: 20px;
    color: #f5f5f5;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
    text-shadow: 1px 1px 5px black;
}

/* About Images */
.about-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.about-img {
    width: 30%;
    border-radius: 10px;
    border: 2px solid crimson;
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px crimson;
}

/* Services Section */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(30,30,30,0.9);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid crimson;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px crimson;
}

.service-btns {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

/* Service Icons */
.service-icon {
    font-size: 40px;
    color: crimson;
    display: block;
    margin: 0 auto 15px auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    border-top: 1px solid crimson;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-images {
        flex-direction: column;
        align-items: center;
    }

    .about-img {
        width: 80%;
        margin-bottom: 20px;
    }

    .service-btns {
        flex-direction: column;
        gap: 10px;
    }

    #about {
        padding: 50px 20px;
    }

    #about h2 {
        font-size: 32px;
    }

    #about p {
        font-size: 18px;
    }
}
/* Gallery Section */
#gallery {
    padding: 80px 50px;
    background: rgba(20,0,0,0.85);
    border-radius: 15px;
    border: 2px solid crimson;
    text-align: center;
    margin-bottom: 50px;
}

#gallery h2 {
    font-size: 36px;
    color: crimson;
    margin-bottom: 40px;
    text-shadow: 2px 2px 10px black;
}

.gallery-images {
    display: flex;
    justify-content: space-between; /* aligns images left, center, right */
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-img {
    width: 30%;
    border-radius: 10px;
    border: 2px solid crimson;
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px crimson;
}

/* Optional: specific positioning for extra control */
.left-img {
    align-self: flex-start;
}

.center-img {
    align-self: center;
}

.right-img {
    align-self: flex-end;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-images {
        flex-direction: column;
        align-items: center;
    }

    .gallery-img {
        width: 80%;
        margin-bottom: 20px;
    }
}




