/* =========================================================
   ADITIQUE CREATIONS
   PREMIUM PHOTOGRAPHY WEBSITE
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080808;
    color: #f5f5f5;
    line-height: 1.6;
}

body.lightbox-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;

    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.header-container {
    max-width: 1200px;
    height: 100%;
    margin: auto;
    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo-link {
    display: flex;
    align-items: center;

    width: 170px;
    height: 60px;

    overflow: hidden;
}

.logo {
    display: block;

    width: 150px;
    height: 55px;

    max-width: 150px;
    max-height: 55px;

    object-fit: contain;
    object-position: left center;

    border: none;
    border-radius: 0;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation a {
    color: #ffffff;

    font-size: 14px;
    letter-spacing: 1px;

    text-transform: uppercase;

    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #d4af37;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu-toggle {
    display: none;

    background: transparent;
    border: none;

    color: #d4af37;

    font-size: 28px;

    cursor: pointer;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 100vh;

    padding: 140px 25px 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.70)
        ),
        url("images/hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 850px;

    text-align: center;

    position: relative;
    z-index: 2;
}

.hero-location {
    color: #d4af37;

    font-size: 13px;
    letter-spacing: 4px;

    margin-bottom: 20px;

    text-transform: uppercase;
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 7vw, 78px);

    line-height: 1.05;
    font-weight: 500;

    margin-bottom: 25px;
}

.hero p {
    max-width: 700px;

    margin: 0 auto 35px;

    color: #dddddd;

    font-size: 18px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

.btn {
    display: inline-block;

    padding: 14px 28px;

    border: 1px solid #d4af37;

    font-size: 13px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: all 0.3s ease;
}

.btn-primary {
    background: #d4af37;

    color: #080808;
}

.btn-primary:hover {
    background: transparent;

    color: #d4af37;
}

.btn-outline {
    background: transparent;

    color: #ffffff;
}

.btn-outline:hover {
    background: #d4af37;

    color: #080808;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

section {
    padding: 100px 25px;
}

.section-container {
    max-width: 1200px;

    margin: auto;
}

.section-heading {
    text-align: center;

    margin-bottom: 55px;
}

.section-heading span {
    display: block;

    color: #d4af37;

    font-size: 13px;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.section-heading h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(32px, 5vw, 50px);

    font-weight: 500;
}

.section-heading p {
    max-width: 650px;

    margin: 18px auto 0;

    color: #aaaaaa;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
    background: #101010;
}

.about-content {
    max-width: 850px;

    margin: auto;

    text-align: center;
}

.about-content h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(32px, 5vw, 50px);

    font-weight: 500;

    margin-bottom: 25px;
}

.about-content p {
    color: #bbbbbb;

    font-size: 17px;

    margin-bottom: 20px;
}

.about-highlights {
    margin-top: 50px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.highlight-card {
    padding: 30px 20px;

    background: #0b0b0b;

    border: 1px solid rgba(212, 175, 55, 0.20);

    transition: 0.3s ease;
}

.highlight-card:hover {
    border-color: rgba(212, 175, 55, 0.55);
}

.highlight-card h3 {
    color: #d4af37;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;

    margin-bottom: 10px;
}

.highlight-card p {
    color: #aaaaaa;

    font-size: 14px;
}


/* =========================================================
   PORTFOLIO
   ========================================================= */

.portfolio {
    background: #080808;
}

.portfolio-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.portfolio-card {
    height: 400px;

    position: relative;

    overflow: hidden;

    background: #111111;

    cursor: pointer;
}


/* PORTFOLIO IMAGE */

.portfolio-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    transition: transform 0.7s ease;
}

.portfolio-card:hover::before {
    transform: scale(1.06);
}


/* EVENTS */

.events-image::before {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.60)
        ),
        url("images/events.jpg");
}


/* PORTRAITS */

.portraits-image::before {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.60)
        ),
        url("images/portraits.jpg");
}


/* MATERNITY */

.maternity-image::before {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.60)
        ),
        url("images/maternity.jpg");
}


/* REAL ESTATE */

.realestate-image::before {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.60)
        ),
        url("images/real-estate.jpg");
}


/* PORTFOLIO OVERLAY */

.portfolio-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 35px;

    background:
        linear-gradient(
            transparent 35%,
            rgba(0, 0, 0, 0.85)
        );
}

.portfolio-overlay h3 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;

    font-weight: 500;

    margin-bottom: 5px;
}

.portfolio-overlay p {
    color: #d4af37;

    font-size: 13px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services {
    background: #101010;
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.service-card {
    padding: 35px 30px;

    background: #080808;

    border: 1px solid rgba(212, 175, 55, 0.18);

    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(212, 175, 55, 0.55);
}

.service-card h3 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;

    font-weight: 500;

    margin-bottom: 12px;
}

.service-card p {
    color: #aaaaaa;

    font-size: 14px;
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
    min-height: 500px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.72)
        ),
        url("images/cta.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}

.cta-content {
    max-width: 800px;

    position: relative;

    z-index: 2;
}

.cta h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(35px, 6vw, 60px);

    font-weight: 500;

    margin-bottom: 20px;
}

.cta p {
    color: #dddddd;

    font-size: 17px;

    margin-bottom: 30px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
    background: #080808;
}

.contact-grid {
    max-width: 1050px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 60px;
}

.contact-info h3,
.contact-form h3 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;

    font-weight: 500;

    margin-bottom: 25px;
}

.contact-info p {
    color: #aaaaaa;

    margin-bottom: 15px;
}

.contact-info strong {
    color: #ffffff;
}

.contact-info a {
    color: #d4af37;
}

.contact-info a:hover {
    text-decoration: underline;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    color: #cccccc;

    font-size: 13px;

    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px;

    background: #111111;

    color: #ffffff;

    border: 1px solid #333333;

    outline: none;

    font-family: inherit;

    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d4af37;
}

.form-group textarea {
    min-height: 150px;

    resize: vertical;
}

.form-message {
    margin-top: 15px;

    color: #d4af37;

    font-size: 14px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding: 45px 25px;

    background: #050505;

    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.footer-container {
    max-width: 1200px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.footer-logo {
    width: 120px;

    height: auto;
}

.footer p {
    color: #777777;

    font-size: 13px;
}

.footer-links {
    display: flex;

    gap: 20px;
}

.footer-links a {
    color: #999999;

    font-size: 13px;
}

.footer-links a:hover {
    color: #d4af37;
}


/* =========================================================
   LIGHTBOX / PHOTO GALLERY
   ========================================================= */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 2000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 50px;

    background: rgba(0, 0, 0, 0.94);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;

    visibility: visible;
}

.lightbox-content {
    max-width: 1100px;

    width: 90%;

    text-align: center;

    position: relative;
}

.lightbox-image {
    max-width: 100%;

    max-height: 75vh;

    width: auto;

    height: auto;

    margin: auto;

    object-fit: contain;

    border: 1px solid
        rgba(212, 175, 55, 0.35);

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
    margin-top: 20px;
}

.lightbox-title {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: #ffffff;

    font-size: 28px;

    font-weight: 500;

    margin-bottom: 5px;
}

.lightbox-category {
    color: #d4af37;

    font-size: 13px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   LIGHTBOX CLOSE BUTTON
   ========================================================= */

.lightbox-close {
    position: absolute;

    top: 25px;

    right: 30px;

    width: 45px;

    height: 45px;

    border: 1px solid
        rgba(212, 175, 55, 0.5);

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.5);

    color: #ffffff;

    font-size: 30px;

    line-height: 38px;

    cursor: pointer;

    z-index: 5;

    transition: 0.3s ease;
}

.lightbox-close:hover {
    background: #d4af37;

    color: #080808;
}


/* =========================================================
   LIGHTBOX PREVIOUS / NEXT
   ========================================================= */

.lightbox-prev,
.lightbox-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 50px;

    height: 50px;

    border: 1px solid
        rgba(212, 175, 55, 0.5);

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.5);

    color: #ffffff;

    font-size: 25px;

    cursor: pointer;

    transition: 0.3s ease;

    z-index: 5;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #d4af37;

    color: #080808;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .navigation {
        gap: 18px;
    }

    .about-highlights,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .header {
        height: 70px;
    }

    .header-container {
        padding: 0 18px;
    }


    /* MOBILE LOGO */

    .logo-link {
        width: 135px;

        height: 55px;
    }

    .logo {
        width: 125px;

        height: 48px;

        max-width: 125px;

        max-height: 48px;
    }


    /* MOBILE MENU */

    .menu-toggle {
        display: block;
    }

    .navigation {
        position: absolute;

        top: 70px;

        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        padding: 25px;

        background: rgba(8, 8, 8, 0.98);

        border-bottom:
            1px solid
            rgba(212, 175, 55, 0.25);
    }

    .navigation.active {
        display: flex;
    }

    .navigation a {
        padding: 10px;
    }


    /* HERO */

    .hero {
        padding: 120px 20px 80px;

        min-height: 90vh;

        background-position: center;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero p {
        font-size: 16px;
    }


    /* SECTIONS */

    section {
        padding: 75px 20px;
    }


    /* ABOUT */

    .about-highlights {
        grid-template-columns: 1fr;
    }


    /* PORTFOLIO */

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card {
        height: 350px;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .cta {
        min-height: 450px;
    }


    /* FOOTER */

    .footer-container {
        flex-direction: column;

        text-align: center;
    }

    .footer-links {
        justify-content: center;

        flex-wrap: wrap;
    }


    /* LIGHTBOX */

    .lightbox {
        padding: 20px;
    }

    .lightbox-content {
        width: 100%;
    }

    .lightbox-image {
        max-height: 65vh;
    }

    .lightbox-title {
        font-size: 22px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;

        height: 42px;

        font-size: 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;

        right: 15px;

        width: 40px;

        height: 40px;

        font-size: 26px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 450px) {

    .hero h1 {
        font-size: 38px;
    }

    .hero-location {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    .portfolio-card {
        height: 300px;
    }

    .portfolio-overlay {
        padding: 25px;
    }

    .portfolio-overlay h3 {
        font-size: 25px;
    }
}