/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page */
body {
    font-family: "Inter", sans-serif;
    background-color: #0f0f0f;
    color: white;
}

/* Navbar */
.navbar {
    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 50px;

    background-color: #111111;
}

/* Logo */
.logo {
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;

    transition: 0.3s;
}

.nav-links a:hover {
    color: #999999;
}

/* Quote Button */
.quote-button {
    background-color: white;
    color: black;

    text-decoration: none;

    padding: 12px 20px;
    border-radius: 6px;

    font-weight: bold;
    transition: 0.3s;
}

.quote-button:hover {
    background-color: #cccccc;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 50px;

    text-align: center;

    position: relative;

    background-image:
        linear-gradient(
            rgba(15, 15, 15, 0.78),
            rgba(15, 15, 15, 0.78)
        ),
        url("../images/heropic.JPG");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 900px;
}

.hero-label {
    margin-bottom: 20px;

    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;

    color: #999999;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.05;

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: #999999;
}

.hero-text {
    max-width: 650px;

    margin: 0 auto 35px;

    font-size: 18px;
    line-height: 1.6;

    color: #bbbbbb;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.primary-button,
.secondary-button {
    padding: 15px 25px;

    text-decoration: none;

    border-radius: 6px;

    font-weight: bold;

    transition: 0.3s;
}

.primary-button {
    background: white;
    color: black;
}

.primary-button:hover {
    background: #cccccc;
}

.secondary-button {
    border: 1px solid #555555;
    color: white;
}

.secondary-button:hover {
    background: #222222;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {

    .navbar {
        position: relative;
        height: 80px;
        padding: 0 20px;

        flex-direction: row;
        justify-content: space-between;
    }

    .quote-button {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: calc(100vh - 180px);
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }

    /* Services */
    .services {
        width: 100%;
        padding: 70px 15px;
    }

    .services-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        width: 100%;
        padding: 25px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .service-card p {
        font-size: 15px;
    }
}

/* Services Section */
.services {
    padding: 120px 50px;
    background: #151515;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-label {
    margin-bottom: 15px;

    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;

    color: #999999;
}

.section-heading h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.section-heading > p:last-child {
    color: #aaaaaa;
    font-size: 17px;
    line-height: 1.6;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    padding: 40px;

    background: #1c1c1c;
    border: 1px solid #292929;

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #555555;
}

.service-number {
    margin-bottom: 30px;

    color: #777777;
    font-size: 14px;
    font-weight: bold;
}

.service-card h3 {
    margin-bottom: 15px;

    font-size: 28px;
}

.service-card p {
    margin-bottom: 25px;

    color: #aaaaaa;
    line-height: 1.6;
}

.service-card a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.service-card a:hover {
    color: #999999;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 50px;
    background: #0f0f0f;
}

.portfolio-grid {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-item {
    overflow: hidden;
}

.portfolio-placeholder {
    height: 350px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1c1c1c;
    border: 1px solid #292929;

    color: #777777;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;

    transition: 0.3s;
}

.portfolio-placeholder:hover {
    background: #242424;
}

.portfolio-item h3 {
    margin-top: 18px;
    font-size: 22px;
}

.portfolio-item p {
    margin-top: 6px;
    color: #888888;
}

@media (max-width: 768px) {

    .portfolio {
        padding: 80px 15px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-placeholder {
        height: 250px;
    }
}

.portfolio-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* About Section */
.about {
    padding: 120px 50px;
    background: #151515;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-text p:not(.section-label) {
    color: #aaaaaa;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text .primary-button {
    display: inline-block;
    margin-top: 15px;
}

.about-placeholder {
    width: 100%;
    height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1c1c1c;
    border: 1px solid #292929;

    color: #777777;
    letter-spacing: 3px;
    font-size: 14px;
}

@media (max-width: 768px) {

    .about {
        padding: 80px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 38px;
    }

    .about-placeholder {
        height: 350px;
    }
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-photo {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Contact Section */
.contact {
    padding: 120px 20px;
    background: #0f0f0f;
}

.contact-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-heading h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.contact-heading p:not(.section-label) {
    color: #aaaaaa;
    line-height: 1.6;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group label {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;

    background: #1c1c1c;
    color: white;

    border: 1px solid #333333;
    border-radius: 6px;

    font-family: inherit;
    font-size: 16px;

    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #777777;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 16px;

    border: none;
    border-radius: 6px;

    background: white;
    color: black;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.submit-button:hover {
    background: #cccccc;
}

@media (max-width: 768px) {

    .contact {
        padding: 80px 20px;
    }

    .contact-heading h2 {
        font-size: 38px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Footer */
.footer {
    padding: 70px 50px 25px;
    background: #090909;
    border-top: 1px solid #222222;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto 60px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-brand h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.footer-brand p {
    max-width: 350px;
    color: #888888;
    line-height: 1.6;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 8px;
}

.footer a {
    color: #888888;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;

    padding-top: 25px;

    border-top: 1px solid #222222;

    text-align: center;

    color: #666666;
    font-size: 14px;
}

@media (max-width: 768px) {

    .footer {
        padding: 60px 20px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

/* Mobile Menu */
.menu-toggle {
    display: none;

    background: none;
    border: none;

    color: white;
    font-size: 28px;

    cursor: pointer;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 0;

        background: #111111;
        border-top: 1px solid #292929;

        /* Animation */
        max-height: 0;
        overflow: hidden;
        opacity: 0;

        transition:
            max-height 0.4s ease,
            opacity 0.3s ease;
    }

    .nav-links.active {
        max-height: 350px;
        opacity: 1;
    }

    .nav-links a {
        width: 100%;
        padding: 16px;

        text-align: center;

        transform: translateY(-10px);
        transition:
            transform 0.3s ease,
            background 0.2s ease;
    }

    .nav-links.active a {
        transform: translateY(0);
    }

    .nav-links a:hover {
        background: #1c1c1c;
    }

    .quote-button {
        display: none;
    }
}

.service-area {
    color: #ffffff !important;
    font-weight: 600;
    margin-top: 25px;
}

/* Photography Packages */

.packages {
    padding: 120px 20px;
    background: #111111;
}

.packages-grid {
    max-width: 1100px;
    margin: 60px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.package-card {
    padding: 40px 30px;

    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 8px;

    transition: transform 0.3s ease,
                border-color 0.3s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    border-color: #555555;
}

.package-card.featured {
    border-color: #777777;
}

.package-type {
    font-size: 13px;
    letter-spacing: 2px;
    color: #999999;
    font-weight: 700;
}

.package-card h3 {
    font-size: 42px;
    margin: 15px 0;
}

.package-description {
    color: #999999;
    line-height: 1.6;
    min-height: 55px;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.package-card li {
    padding: 10px 0;

    border-bottom: 1px solid #292929;

    color: #cccccc;
}

.package-button {
    display: block;

    padding: 14px;

    text-align: center;

    background: white;
    color: black;

    text-decoration: none;
    font-weight: 600;

    border-radius: 5px;

    transition: 0.3s ease;
}

.package-button:hover {
    background: #cccccc;
}

@media (max-width: 768px) {

    .packages {
        padding: 80px 20px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card {
        padding: 35px 25px;
    }

}