<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>DKVR Architecture</title>
<link rel="icon" href="https://dkvr.ro/signature/Logo.png" 
    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
    <style>
        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            background: url('https://via.placeholder.com/1500x800') no-repeat center center/cover;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* Dark overlay */
        }
        .hero-content {
            z-index: 2;
        }
        /* Logo */
        .logo {
            max-width: 200px;
            margin-bottom: 20px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        .cta-button {
            padding: 10px 20px;
            background-color: orange;
            color: black;
            text-decoration: none;
            font-size: 1.2rem;
            border-radius: 5px;
        }

        /* About Section */
        .about {
            background-color: #fff;
            padding: 50px 20px;
            text-align: center;
        }
        .about h2 {
            font-size: 2.5rem;
            color: black;
            margin-bottom: 20px;
        }
        .about p {
            font-size: 1.2rem;
            color: #333;
        }

        /* Featured Projects Section */
        .projects {
            padding: 50px 20px;
            background-color: #f9f9f9;
            text-align: center;
        }
        .projects h2 {
            font-size: 2.5rem;
            color: black;
            margin-bottom: 40px;
        }
        .project-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .project-item {
            position: relative;
            overflow: hidden;
        }
        .project-item img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }
        .project-item:hover img {
            transform: scale(1.1);
        }

        /* Footer */
        .footer {
            background-color: black;
            color: white;
            text-align: center;
            padding: 20px;
        }
        .footer a {
            color: orange;
            text-decoration: none;
            font-size: 1rem;
        }
    </style>
</head>
<body>

    <!-- Hero Section -->
    <section class="hero">
        <div class="hero-overlay"></div>
        <div class="hero-content">
            <img src="https://dkvr.ro/signature/sig.png" alt="DKVR Logo" class="logo">
            <h1>Innovative Architecture for the Future</h1>
            <a href="#projects" class="cta-button">Explore Our Projects</a>
        </div>
    </section>

    <!-- About Us Section -->
    <section class="about">
        <h2>About Us</h2>
        <p>We are an architecture firm focused on creating sustainable, innovative designs that cater to your needs and vision. Our team is dedicated to bringing your ideas to life with precision and creativity.</p>
    </section>

    <!-- Featured Projects Section -->
    <section class="projects" id="projects">
        <h2>Featured Projects</h2>
        <div class="project-grid">
            <div class="project-item">
                <img src="https://via.placeholder.com/400x300" alt="Project 1">
            </div>
            <div class="project-item">
                <img src="https://via.placeholder.com/400x300" alt="Project 2">
            </div>
            <div class="project-item">
                <img src="https://via.placeholder.com/400x300" alt="Project 3">
            </div>
        </div>
    </section>

    <!-- Footer Section -->
    <footer class="footer">
        <p>&copy; 2025 DKVR Architecture | <a href="mailto:victor.d@dkvr.ro">Contact Us</a></p>
    </footer>

</body>
</html>
