/* Base styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #101822;
}

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

h1, h2 {
    color: #b99c2b;
    text-transform: uppercase;
    text-align: center;
}

a {
    color: #b99c2b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 7rem 0;
    background: url('https://via.placeholder.com/1920x1080') center/cover no-repeat; /* Placeholder */
    color: #fff;
    overflow: hidden;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(16, 24, 34, 0.9));
    z-index: 1;
}

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

.hero h1 {
    font-size: 3rem;
    margin: 0;
    animation: fade-in 1s ease-in-out;
}

.hero .slogan {
    margin: 1rem 0;
    font-size: 1.5rem;
    animation: fade-in 1.5s ease-in-out;
}

.hero .cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: #b99c2b;
    color: #101822;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    animation: fade-in 2s ease-in-out;
}

.hero .cta-button:hover {
    background-color: #cfb151;
}

/* Fade-in animation */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shapes and patterns */
.hero::before {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(185, 156, 43, 0.3);
    border-radius: 50%;
    z-index: 1;
    animation: float 5s infinite ease-in-out;
}

.hero::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(185, 156, 43, 0.5);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Section styles */
.section {
    text-align: center;
    padding: 4rem 0;
}

.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-image: url('back.jpg'); /* Placeholder */
    color: #ffffff;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.service-list i {
    color: #b99c2b;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #1a283e;
    color: #bbb;
}