/* Global Styles */
:root {
    --primary-color: #007bff; /* A blue similar to the reference site */
    --dark-bg: #1a1a1a;
    --dark-bg-secondary: #2c2c2c;
    --text-color: #f4f4f4;
    --text-secondary-color: #a9a9a9;
}

body {
    font-family: 'Poppins', sans-serif; /* Using a similar font */
    margin: 0;
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 60px 0;
}

/* Header & Navigation */
.header {
    width: 100%;
    background: var(--dark-bg);
    padding: 15px 0;
    transition: background 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    margin-left: 30px;
}

.navbar-nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav a:hover::after {
    width: 100%;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-toggler-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-color);
    position: relative;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    left: 0;
}
.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after { top: 8px; }


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: url(images/background_img.jpeg) no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-secondary-color);
    line-height: 1.8;
}

.about-video iframe {
    width: 100%;
    height: 315px;
    border-radius: 10px;
}

.about-video img {
    width: 50%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    background-color: var(--dark-bg-secondary);
}

.services-section h2, .gallery-section h2, .contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-bg);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}
.service-card img {
    width: 100%;
    height: auto;
}
.service-card h3 {
    margin: 15px 0;
    color: var(--primary-color);
}
.service-card p {
    padding: 0 15px 15px;
    color: var(--text-secondary-color);
}
.hero-overlay {
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Process Section */
.process-section .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}
.process-item img {
    height: 80px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.gallery-grid .gallery-item {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    border-radius: 5px;
}

.gallery-grid .gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Contact Section */
.contact-section {
    background-color: var(--dark-bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info {
    text-align: left;
}

.social-media img {
    height: 40px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    text-align: center;
    padding: 10px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-nav {
        display: none; /* Hide by default */
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: var(--dark-bg);
    }
    .navbar-nav.active {
        display: flex; /* Show when active */
    }
    .navbar-nav li {
        margin: 15px 0;
    }
    .navbar-toggler {
        display: block;
    }
    .navbar-collapse {
        flex-basis: 100%;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.2rem; }
    .about-content { grid-template-columns: 1fr; }
    .process-section .container { flex-direction: column; gap: 30px; }
}
