* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 110px;
}
body {
    font-family: 'Montserrat', sans-serif;
    background: #080808;
    color: white;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
}

/* NAVBAR */

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: 95px;
    padding: 0 45px 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #000;
    border-bottom: 2px solid #d4a017;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 78px;
    width: auto;
}

nav {
    display: flex;
    gap: 32px;
}

.hamburger {
    display: none;
}

nav a {
    position: relative;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;

    transition: 0.3s;
}

nav a::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #f0c23b;

    transition: width 0.3s ease;
}

nav a:hover {
    color: #f0c23b;
}

nav a:hover::after {
    width: 100%;
}

.quote-btn {
    color: #f0c23b;
    border: 1px solid #f0c23b;
    padding: 12px 22px;

    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    transition: 0.3s;
}

.quote-btn:hover {
    background: #f0c23b;
    color: #000;
}

/* HERO */

.hero {
    min-height: 86vh;
    padding: 80px 6%;

    display: flex;
    align-items: center;

    background:
        linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.45)),
        url("images/Man_16.jpg") center/cover no-repeat;
}

.hero-content {
    max-width: 650px;
}

.hero-content span,
.label {
    color: #f0c23b;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.05;
    margin: 15px 0 20px;
    text-transform: uppercase;
}

.hero h1 strong {
    color: #f0c23b;
}

.hero p {
    font-size: 19px;
    color: #ddd;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
}

/* BUTTONS */

.btn {
    display: inline-block;
    background: #f0c23b;
    color: #000;
    padding: 14px 28px;
    border-radius: 4px;

    font-weight: 800;
    transition: 0.3s;
}

.btn:hover {
    background: #d4a017;
    transform: translateY(-2px);
}

.btn.outline {
    background: transparent;
    color: white;
    border: 1px solid #f0c23b;
}

/* FEATURES */

.features {
    display: flex;
    justify-content: space-between;
    gap: 50px;

    padding: 55px 80px;

    background: #000;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.feature {
    flex: 1;

    display: flex;
    align-items: center;
    gap: 18px;
}

.feature i {
    color: #f0c23b;
    font-size: 42px;
    min-width: 45px;

    display: flex;
    justify-content: center;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.feature p {
    color: #aaa;
}

/* GENERAL SECTIONS */

.section {
    padding: 85px 6%;
}

.section h2,
.about h2,
.cta h2 {
    font-size: 38px;
    margin: 8px 0 35px;
    text-transform: uppercase;
}

/* RESULTS */

.results-grid,
.cards {
    display: grid;
    gap: 18px;
}

.results-grid {
    grid-template-columns: repeat(4, 1fr);
}

.result-card {
    position: relative;
    overflow: hidden;

    border: 1px solid #2a2a2a;
    border-radius: 8px;
    background: #111;
}

.result-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter: brightness(0.85);
}

.result-card span {
    position: absolute;
    left: 12px;
    bottom: 12px;

    background: rgba(0,0,0,0.75);
    padding: 6px 12px;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* SERVICES */

.cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: linear-gradient(180deg, #151515, #0e0e0e);
    border: 1px solid #242424;
    border-bottom: 4px solid #d4a017;

    padding: 32px;
    border-radius: 10px;
}

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 0.35s ease;
}

.package-price {
    margin-bottom: 22px;
}

.package-price strong {
    display: block;
    color: #f0c23b;
    font-size: 34px;
    margin-bottom: 6px;
}

.package-price span {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #888;
    font-size: 14px;
}

.package-price i {
    color: #f0c23b;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: #f0c23b;
}

.package-card p {
    color: #bbb;
    margin-bottom: 20px;
}

.package-btn {
    display: inline-block;
    margin-top: auto;

    color: #f0c23b;
    border: 1px solid #f0c23b;

    padding: 11px 18px;
    border-radius: 4px;

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;

    transition: 0.3s;
}

.package-btn:hover,
.package-btn.main {
    background: #f0c23b;
    color: #000;
}

.package-btn:hover {
    background: #f0c23b;
    color: #000;
}

.package-btn.main:hover {
    background: transparent;
    color: #f0c23b;
    border: 1px solid #f0c23b;
}

.featured-package {
    border: 1px solid #f0c23b;
    box-shadow: 0 0 30px rgba(240,194,59,0.12);
}

.badge {
    position: absolute;
    top: -14px;
    right: 20px;

    background: #f0c23b;
    color: #000;

    padding: 5px 11px;
    border-radius: 4px;

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.price-note {
    margin-top: 35px;
    color: #aaa;
    text-align: center;
    font-size: 14px;
}

.card h3 {
    margin-bottom: 18px;
    text-transform: uppercase;
}

.card ul {
    list-style: none;
}

.card li {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 15px;
}

.card li::before {
    content: "✓";
    color: #f0c23b;
    margin-right: 8px;
}

/* EXTRA'S */

.extras {
    margin-top: 55px;
}

.extras h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.extras-grid {
    display: grid;
    gap: 18px;
}

.extra-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 25px;

    background: #111;
    border: 1px solid #242424;
    border-radius: 10px;

    padding: 22px 28px;
    transition: 0.3s ease;
}

.extra-item:hover {
    border-color: #f0c23b;
    transform: translateY(-2px);
}

.extra-item i {
    color: #f0c23b;
    font-size: 22px;
    text-align: center;
}

.extra-content {
    text-align: center;
}

.extra-content strong {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
}

.extra-content p {
    color: #999;
    font-size: 14px;
}

.extra-item span {
    color: #f0c23b;
    font-weight: 800;
    white-space: nowrap;
}

/* ABOUT */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    background: #111;
}

.about img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.about-text {
    padding: 60px;
}

.about-text p {
    color: #ccc;
    margin-bottom: 15px;
}

/* CTA */

.cta {
    text-align: center;
    padding: 85px 6%;

    background: #000;
    border-top: 1px solid #161616;
    border-bottom: 1px solid #161616;
}

.cta .btn {
    padding: 16px 34px;
    font-size: 15px;
}

.cta-label {
    color: #f0c23b;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 22px;
}

.cta-text {
    color: #ccc;
    max-width: 720px;
    margin: 0 auto 28px;

    font-size: 17px;
    line-height: 1.7;
}

.photo-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    max-width: 820px;
    margin: 0 auto 35px;
}

.photo-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 16px;
    background: #111;
    border: 1px solid #252525;
    border-radius: 10px;
    padding: 18px 20px;
    transition: 0.3s ease;
}

.photo-item:hover {
    border-color: #f0c23b;
    box-shadow: 0 0 18px rgba(240,194,59,0.08);
}

.photo-item i {
    color: #f0c23b;
    font-size: 20px;
    min-width: 20px;
}

.photo-item strong {
    display: block;
    margin-bottom: 2px;

    font-size: 17px;
    text-align: left;
}

.photo-item p {
    color: #888;
    font-size: 13px;
    text-align: left;
}

/* FOOTER */

.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;

    padding: 70px 80px 30px;

    background: #000;
    border-top: 1px solid #111;
}

.footer-left {
    max-width: 320px;
}

.footer-left p,
.footer-bottom {
    color: #777;
}

.footer-left p {
    color: #ccc;
    line-height: 1.8;
}

.footer img {
    height: 42px;
    width: auto;
    margin-bottom: 18px;
    opacity: 0.9;
}

.footer h4 {
    color: #f0c23b;
    margin-bottom: 18px;
    font-size: 22px;
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact a {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: white;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: #f0c23b;
}

.footer-contact i {
    color: #f0c23b;
    width: 20px;
    margin-top: 4px;
}

.footer-contact span {
    line-height: 1.5;
}

.footer-bottom {
    width: 100%;

    text-align: center;
    margin-top: 50px;
    padding-top: 25px;

    border-top: 1px solid #161616;
    font-size: 14px;
}

/* MOBILE */

@media (max-width: 900px) {

    .topbar {
        height: 75px;
        padding: 0 22px;

        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .logo img {
        height: 42px;
        width: auto;
    }

    .hamburger {
        display: block;

        background: none;
        border: none;

        color: white;
        font-size: 30px;

        cursor: pointer;
    }

    nav {
        position: absolute;
        top: 75px;
        left: 0;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 22px;

        padding: 0;

        background: #000;
        border-bottom: 2px solid #d4a017;

        max-height: 0;
        overflow: hidden;
        opacity: 0;

        transition:
            max-height 0.4s ease,
            opacity 0.3s ease,
            padding 0.3s ease;
    }

    nav.show {
        max-height: 400px;
        opacity: 1;
        padding: 30px 0;
    }

    nav a {
        font-size: 16px;
    }

    .quote-btn {
        display: none;
    }

    .hero {
        min-height: 75vh;
        padding: 35px 22px;

        text-align: left;
        justify-content: center;

        background-position: center;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.08;
    }

    .hero p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .btn {
        width: 100%;
        padding: 13px 20px;

        text-align: center;
        font-size: 15px;
    }

    .package-btn {
        width: 100%;
        text-align: center;
    }

    .extra-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
}

.extra-content {
    text-align: center;
}

.extra-item span {
    justify-self: center;
}

    .features,
    .cards,
    .results-grid,
    .about {
        display: grid;
        grid-template-columns: 1fr;
    }
    .package-price strong {
    font-size: 30px;
    }   
    .features {
        padding: 45px 25px;
        gap: 35px;
    }

    .feature i {
        font-size: 38px;
    }

    .feature h3 {
        font-size: 21px;
    }

    section {
        scroll-margin-top: 75px;
    }

    .section {
        padding: 45px 25px;
    }

    .section h2,
    .about h2,
    .cta h2 {
        font-size: 30px;
    }

    .about img {
        height: 320px;
    }

    .about-text {
        padding: 40px 25px;
    }

    .cta {
        padding: 65px 25px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .cta-text {
        font-size: 15px;
    }

    .photo-checklist {
        grid-template-columns: 1fr;
    }

    .photo-checklist span {
        width: 100%;
        max-width: 320px;

        display: grid;
        grid-template-columns: 120px 1fr;
        align-items: center;

        text-align: left;
    }

    .photo-checklist i {
        justify-self: end;
        margin-right: 14px;
    }

    .footer {
        padding: 50px 25px 25px;

        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .footer-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .footer-left p {
    width: 100%;
    max-width: 300px;

    text-align: center;
    line-height: 1.8;

    margin-top: 20px;
    }
    
    .footer-contact {
        width: fit-content;
        margin: 0 auto;
        text-align: left;
    }

    .footer-contact a {
        display: grid;
        grid-template-columns: 22px 1fr;
        align-items: start;
        column-gap: 12px;

        width: 100%;
        margin: 0;
    }

    .footer-contact i {
        width: 22px;
        text-align: center;
        margin-top: 4px;
    }

    .footer img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        font-size: 13px;
        line-height: 1.7;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content span {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}

.hero-content h1 {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
    animation-delay: 0.2s;
}

.hero-content p {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
    animation-delay: 0.4s;
}

.hero-buttons {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
    animation-delay: 0.6s;
}
