/* Base Variables & Reset */
:root {
    --bg-color: #252527;
    --text-main: #fff;
    --text-light: #666666;
    --accent: #f1d1af;
    --font-sans: 'Jost', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --footer-main:#f1d1af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 600;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

/* Navigation */
.navbar {
    padding: 25px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
background-color:var(--footer-main);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: 2px;
}

.logo span {
    font-weight: 300;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 30px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #bfa032;
}

.btn-dark {
    background-color: var(--text-main);
}
.btn-dark:hover {
    background-color: #444;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('470408/lamp.png') center/50% no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    max-width: 600px;
    margin-bottom: 20px;
}

.hero .subtitle {
    color: #fff;
}

.featured-card {
    background: linear-gradient(transparent, rgba(0,0,0,0.8));

    color: var(--footer-main);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-card .price {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 600;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stat-box h2 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-box span {
    font-size: 2rem;
    vertical-align: super;
}

/* Features Section */
.features {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 30px 20px;
}

.features-image {
    flex: 1;
}

.features-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.features-content {
    flex: 1;
	
}

.features-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.features-content .desc {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
text-align:justify;

}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Projects Section */
.projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 50px 20px 100px;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    group: hover;
}

.project-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 20px;
}

/* Footer */
.footer {
    background-color: var(--footer-main);
    color: white;
    padding: 80px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-left {
    flex: 2;
}

.footer-left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-right p {
    color: #aaaaaa;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Carousel Gallery */
        .carousel-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            min-width: 100%;
            cursor: pointer;
        }

        .carousel-slide img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
            transition: opacity 0.3s;
        }

        .carousel-slide:hover img {
            opacity: 0.9;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 15px 20px;
            cursor: pointer;
            font-size: 1.5rem;
            z-index: 10;
            border-radius: 50%;
            transition: background 0.3s;
        }

        .carousel-btn:hover {
            background: rgba(0,0,0,0.8);
        }

        .prev-btn { left: 10px; }
        .next-btn { right: 10px; }

/* Lightbox (Clickable Gallery) */
        .lightbox {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90vh;
            border: 5px solid #fff;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }


 /* Video Showcase Section */
        .video-section {
            text-align: center;
            background-color: #fff;
        }

        .video-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            /* 56.25% creates a perfect 16:9 aspect ratio */
            padding-bottom: 56.25%; 
            height: 0;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .video-container iframe, 
        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }




/* Responsive Design */
@media (max-width: 900px) {
    .features, .hero-content, .footer-content {
        flex-direction: column;
    }
    
    .stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-box {
        width: 45%;
    }
    
    .projects {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none; /* Add a hamburger menu for full mobile support */
    }
}