/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url("background.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* Overlay */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0,0,0,0.75),
        rgba(27,67,50,0.85)
    );
    top: 0;
    left: 0;
}

/* Content */
.content {
    position: relative;
    max-width: 700px;
    z-index: 2;
}

.content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold;
}

.content h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #E9C46A;
}

.content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact p {
    font-size: 14px;
    margin-bottom: 5px;
    opacity: 0.9;
}

/* Button */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 35px;
    border-radius: 30px;
    background: #E76F51;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn:hover {
    background: #cf5a3e;
    transform: translateY(-3px);
}

/* Footer */
footer {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .content h1 {
        font-size: 32px;
    }

    .content h2 {
        font-size: 18px;
    }

    .content p {
        font-size: 14px;
    }
}