/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main page */
body {
    background-color: #f5f2ed;
    color: #1c1c1c;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background-color: #111111;
}

/* Noble House name */
header h1 {
    color: #f28c28;
    font-size: 28px;
}

/* Navigation */
nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav a:hover {
    color: #f28c28;
}

/* Hero section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 60px;
}

.hero-content {
    max-width: 700px;
}

/* Temporary image area */
.hero-image {
    width: 45%;
    height: 500px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #111111;
    color: #f28c28;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    letter-spacing: 2px;
}

.hero-label {
    color: #f28c28;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 35px;
}

.hero-button {
    display: inline-block;
    background-color: #f28c28;
    color: #111111;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
}

/* About section */
.about {
    padding: 120px 60px;
    background-color: #111111;
    color: white;
}

.about-content {
    max-width: 800px;
}

.section-label {
    color: #f28c28;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.about h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about p {
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 20px;
}

/* Services section */
.services {
    padding: 120px 60px;
    background-color: #f5f2ed;
}

.services-heading {
    max-width: 700px;
    margin-bottom: 60px;
}

.services-heading h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.services-heading > p:last-child {
    font-size: 18px;
    color: #555555;
}

/* Service cards */
.service-cards {
    display: flex;
    gap: 25px;
}

.service-card {
    flex: 1;
    background-color: white;
    padding: 40px;
    min-height: 280px;
    border-top: 3px solid #f28c28;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-number {
    color: #f28c28;
    font-size: 14px;
    letter-spacing: 2px;
}

.service-card h3 {
    font-size: 26px;
    margin: 35px 0 15px;
}

.service-card p {
    font-size: 16px;
    color: #555555;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Projects section */
.projects {
    padding: 120px 60px;
    background-color: #111111;
    color: white;
}

.projects-heading {
    max-width: 700px;
    margin-bottom: 60px;
}

.projects-heading h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.projects-heading > p:last-child {
    font-size: 18px;
    color: #cccccc;
}

/* Project gallery */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card {
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 380px;
    background-color: #222222;
    color: #f28c28;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image {
    transform: scale(1.10);
}

.project-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.project-card p {
    color: #aaaaaa;
    font-size: 15px;
}

/* Contact section */
#contact {
    padding: 140px 60px;
    background-color: #111111;
    color: white;
    text-align: center;
}

.contact-content {
    max-width: 850px;
    margin: 0 auto;
}

.contact-description {
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 19px;
    color: #cccccc;
}

#contact h2 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
    padding-top: 35px;
    border-top: 1px solid #333333;
}

.contact-item span {
    color: #f28c28;
    font-size: 12px;
    letter-spacing: 3px;
}

.contact-item p {
    margin-top: 10px;
    font-size: 17px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f28c28;
}

.contact-button {
    display: inline-block;
    padding: 16px 35px;
    background-color: #f28c28;
    color: #111111;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-3px);
    background-color: white;
}

/* Mobile layout */
@media (max-width: 768px) {

    .service-cards {
        flex-direction: column;
    }

    .hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    header {
        flex-direction: column;
        gap: 20px;
        padding: 25px 30px;
    }

    nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 42px;
    }

    .hero-image {
        width: 100%;
        height: 300px;
    }

    /* Mobile contact section */
    #contact {
        padding: 100px 30px;
    }

    #contact h2 {
        font-size: 42px;
    }

    .contact-details {
        flex-direction: column;
        gap: 35px;
    }

    .social-links {
        justify-content: center;
    }
}