/* GLOBAL ------------------------------------------------------------ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0b0b0b;
    color: white;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

/* HEADER ------------------------------------------------------------ */

header {
    width: 100%;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: gold;
    letter-spacing: 1px;
}

nav a {
    margin-left: 22px;
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    color: gold;
}

/* HERO ------------------------------------------------------------ */

.hero {
    height: 85vh;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1920');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65); /* Darkens Image D luxuriously */
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 46px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-content p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 25px;
}

.btn {
    padding: 12px 30px;
    background: gold;
    color: black;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.8;
}

/* PAGE HEADER ------------------------------------------------------------ */

.page-header {
    text-align: center;
    padding: 80px 20px 40px;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gold-line {
    height: 2px;
    width: 80px;
    background: gold;
    margin: 15px auto;
}

/* CONTENT ------------------------------------------------------------ */

.content {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    line-height: 1.7;
    color: #ddd;
}

.service-list {
    list-style: none;
    padding-top: 10px;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
    font-size: 18px;
}

/* ANIMATIONS ------------------------------------------------------------ */

.fade-in {
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}