/* FONT DECLARATIONS */
@font-face {
    font-family: 'Sunlight';
    src: url('fonts/Sunlight Dreams.otf') format('truetype');
}
@font-face {
    font-family: 'QSlite';
    src: url('fonts/Quicksand_Light.otf') format('truetype');
}
@font-face {
    font-family: 'QSbook';
    src: url('fonts/Quicksand_Book.otf') format('truetype');
}
@font-face {
    font-family: 'QSliteitalic';
    src: url('fonts/Quicksand_Light_Oblique.otf') format('truetype');
}
@font-face {
    font-family: 'Against';
    src: url('fonts/against regular.otf') format('truetype');
}
@font-face {
    font-family: 'Starborn';
    src: url('fonts/Starborn.otf') format('truetype');
}

/* GENERAL */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    background-color: #272727;
}
* {
    box-sizing: border-box;
}

/* COVER */
.cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('images/cover.jpg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 9999;
    animation: slideUp 1.4s ease-in-out forwards;
    animation-delay: 0.8s;
}

@keyframes slideUp {
    to {
        transform: translateY(-100%);
    }
}

/* HOME */
.home {
    position: relative;
    z-index: 1;
}

/* HERO HEADER */
.hero-header {
    background-image: url('images/bricks.png');
    background-size: cover;
    background-position: center;
    position: relative;
    color: black;
    height: 250px;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.hero-image {
    height: 220px;
    width: auto;
    flex-shrink: 0;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 180px;
    width: auto;
}

.hero-address {
    position: absolute;
    top: 10px;
    right: 20px;
    text-align: right;
    font-family: 'QSliteitalic', sans-serif;
    font-size: 1.3rem;
    line-height: 1.4;
}

/* NAVBAR */
.navbar {
    background-color: black;
    padding: 5px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid white;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: auto;
    margin: 0;
    padding: 0;
}


.nav-links li a {
    display: flex;
    align-items: center;
    height: auto;
    padding: 8px 18px;
    background-color: black;
    color: white;
    font-family: 'Coolvetica', sans-serif;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid white;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-links li:nth-child(1) a:hover {
    background-color: #63009D;
}

.nav-links li:nth-child(2) a:hover {
    background-color: #2300A1;
}
.nav-links li:nth-child(3) a:hover {
    background-color: #9d0059;
}
.nav-links li:nth-child(4) a:hover {
    background-color: #ff0054;
}
.nav-links li:nth-child(5) a:hover {
    background-color: #fe5500;
}
.nav-links li:nth-child(6) a:hover {
    background-color: #febd00;
}

.nav-links li:not(:last-child)::after {
    content: "|";
    color: white;
    margin-left: 15px;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-cta {
    background-color: #febd00;
    color: black;
    padding: 8px 18px;
    height: auto;
    border: 1px solid white;
    border-radius: 6px;
    font-family: 'Coolvetica', sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
}

.nav-cta:hover {
    background-color: white;
    color: black;
    transform: translateY(-2px);
}

/* MOBILE HAMBURGER */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

.nav-toggle {
    display: none;
}



/* FOOTER */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border: 2px solid white;
    background-image: url('images/footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 200px;
    padding: 24px 40px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    gap: 0;
}

.swap-img {
    display: inline-block;
    width: 200px;
    height: 160px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.swap-img:hover {
    transform: translateY(-4px);
}

.link1 { background-image: url("images/home.png"); }
.link1:hover { background-image: url("images/homehover.png"); }

.link2 { background-image: url("images/service.png"); }
.link2:hover { background-image: url("images/servicehover.png"); }

.link3 { background-image: url("images/work.png"); }
.link3:hover { background-image: url("images/workhover.png"); }

.link4 { background-image: url("images/contact.png"); }
.link4:hover { background-image: url("images/contacthover.png"); }

.link5 { background-image: url("images/about.png"); }
.link5:hover { background-image: url("images/abouthover.png"); }

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    align-self: stretch;
    gap: 8px;
    min-width: 220px;
    padding: 0;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}

.footer-socials a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
    box-sizing: border-box;
}

.footer-socials a.threads { background-image: url('images/threads.png'); }
.footer-socials a.insta   { background-image: url('images/insta.png'); }
.footer-socials a.fb      { background-image: url('images/fb.png'); }
.footer-socials a.twitter { background-image: url('images/twitter.png'); }
.footer-socials a.in      { background-image: url('images/in.png'); }

.footer-socials a:hover {
    transform: scale(1.12);
    filter: brightness(1.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

.footer-info {
    text-align: right;
    font-family: 'QSliteitalic', sans-serif;
    line-height: 1.4;
    font-size: 0.95rem;
    margin: 0;
    padding: 0;
    color: #ffffff;
}

/* SERVICES PAGE PACKAGES */
.packages {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.package {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.package-img {
    width: 300px;
    border-radius: 12px;
    object-fit: cover;
}

.package-text {
    color: white;
    font-family: 'QSbook', sans-serif;
}

.package-text h2 {
    font-family: 'Starborn', sans-serif;
    font-size: 3rem;
    margin-bottom: 8px;
}

.price {
    font-size: 2rem;
    margin-bottom: 8px;
}

.subheader {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.expand-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.expand-toggle input {
    display: none;
}

.expand-content {
    display: none;
    padding: 8px 0;
}

.expand-toggle input:checked + .expand-title + .expand-content {
    display: block;
}

/* MAIN SECTIONS */
.main-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.section {
    display: flex;
    align-items: center;
    gap: 40px;
}

.section-image {
    width: 40%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.text-box {
    width: 50%;
    color: white;
    font-family: 'QSbook', sans-serif;
}

.text-box h2 {
    font-family: 'Starborn', sans-serif;
    font-size: 4rem;
    margin-bottom: 12px;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.text-box p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* CONTACT FORM */
/* =====================*/
.service-form-section {
    max-width: 900px;
    margin: 20px auto;
    padding: 40px 40px;
    color: white;
    font-family: 'QSbook', sans-serif;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;  /* limits width of form */
    margin: 20px auto;    /* centers form horizontally */
    padding: 0 20px;   /* optional padding inside form */
}


.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Each form group: label + input/select/textarea */
.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px; /* spacing between label and field */
    position: relative;
}

/* Labels */
.service-form label {
    color: white;
    font-family: 'QSbook', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

/* Inputs, textarea, select */
.service-form input,
.service-form textarea,
.service-form select {
    padding: 14px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-family: 'QSbook', sans-serif;
    box-sizing: border-box;
    background-color: #272727;
    color: white;
}

/* Floating labels (optional, if using) */
.service-form input:focus + label,
.service-form input:not(:placeholder-shown) + label,
.service-form textarea:focus + label,
.service-form textarea:not(:placeholder-shown) + label,
.service-form select:focus + label,
.service-form select:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.85rem;
    color: #febd00;
    background-color: #272727;
    padding: 0 4px;
}

/* Submit button */
.form-submit {
    background-color: #febd00;
    border: none;
    padding: 14px 24px;
    font-family: 'Coolvetica', sans-serif;
    font-weight: 700;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.form-submit:hover {
    background-color: white;
    color: black;
    transform: translateY(-2px);
}

/* Responsive: stack two-column rows on small screens */
@media screen and (max-width: 700px) {
    .form-row {
        flex-direction: column;
    }
}


/* WORK PAGE SPECIFIC LAYOUT */
.sec {
    margin: 60px auto;
    max-width: 1600px;
    padding: 0 20px;
    color: white;
    font-family: 'QSbook', sans-serif;
}

.sec-header {
    font-family: 'Starborn', sans-serif;
    font-size: 3rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.sec-subheader {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ccc;
}

.sec-description {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* SECTION 1: 6 SQUARE LOGOS */
.grid-6-squares {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.grid-6-squares img {
    width: calc(16.66% - 16px);
    object-fit: cover;
    border-radius: 12px;
}

/* SECTION 2: TWO VERTICAL BRAND BOARD IMAGES */
.two-vertical-imgs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.two-vertical-imgs img {
    width: calc(50% - 10px);
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* SECTION 3: TWO LANDSCAPE STATIONARY IMAGES */
.two-landscape-imgs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.two-landscape-imgs img {
    width: calc(50% - 10px);
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* SECTION 4: WEBSITE DESIGN — LEFT TEXT + RIGHT STACKED + TALL IMAGE */
.sec4-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sec4-right {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.stacked-two {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.stacked-two img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.tall-rect {
    width: 100%;
    max-height: 600px;
    border-radius: 12px;
    object-fit: cover;
    flex: 1;
}

/* FLEX LAYOUT FOR SECTION 4 */
.sec4 {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}


/* RESPONSIVE */
@media screen and (max-width: 900px) {
    /* Grid adjustments for logos and images */
    .grid-6-squares img,
    .two-vertical-imgs img,
    .two-landscape-imgs img {
        width: 100%;
    }

    /* Section 4 - Website Design adjustments for mobile */
@media screen and (max-width: 900px) {
    .sec4 {
        flex-direction: column;
        gap: 20px;
    }

    .sec4-left,
    .sec4-right {
        width: 100%;
    }

    /* Grid layout: 2 columns, tall image right, stacked images left */
    .sec4-right {
        display: grid;
        grid-template-columns: 1fr 1fr; /* left: stacked, right: tall */
        grid-template-rows: 1fr; /* single row, height controlled by tall image */
        gap: 20px;
        align-items: start;
    }

    /* Stacked images take full height of tall image, split evenly */
    .stacked-two {
        display: grid;
        grid-template-rows: 1fr 1fr; /* two images each half the height of tall */
        gap: 20px;
        height: 100%;
    }

    .stacked-two img,
    .tall-rect {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
}



/* =========================
   HERO HEADER RESPONSIVE
   ========================= */

/* DESKTOP: 1410px+ */
@media screen and (min-width: 1411px) {
    .hero-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 250px;
        padding: 0 20px;
        flex-direction: row;
    }

    .hero-image {
        display: block;
        height: 220px;
        width: auto;
    }

    .hero-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 180px;
        width: auto;
    }

    .hero-address {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 1.7rem;
        text-align: right;
    }
}

/* =========================
   HERO HEADER: LARGE TABLET / MOBILE
   ========================= */

/* HIDE LEFT & RIGHT, ONLY SHOW MIDDLE LOGO UNDER 1410px */
@media screen and (max-width: 1410px) {
    .hero-image,
    .hero-address {
        display: none !important; /* force hide */
    }

    .hero-title {
        position: static !important; /* cancel absolute positioning */
        transform: none !important;
        margin: 0 auto;
        display: block;
        height: clamp(100px, 12vw, 180px); /* fluid scaling */
        width: auto;
    }

    .hero-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 20px;
    }
}

/* SMALL TABLET / MOBILE: 600px – 869px */
@media screen and (min-width: 600px) and (max-width: 869px) {
    .hero-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 20px;
    }

    .hero-image,
    .hero-address {
        display: none;
    }

    .hero-title {
        display: block;
        position: static;
        transform: none;
        margin: 0 auto;
        height: clamp(80px, 20vw, 150px);
        width: auto;
    }
}

/* MOBILE: <600px */
@media screen and (max-width: 599px) {
    .hero-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 15px;
    }

    .hero-image,
    .hero-address {
        display: none;
    }

    .hero-title {
        display: block;
        position: static;
        transform: none;
        margin: 0 auto;
        height: clamp(60px, 25vw, 120px);
        width: auto;
    }
}





    /* Section text adjustments */
    .section,
    .section:nth-child(even) {
        flex-direction: column;
    }

    .section-image,
    .text-box {
        width: 100%;
    }

    .text-box h2 {
        font-size: 2.8rem;
        text-align: center;
    }

    .text-box p {
        font-size: 1.1rem;
        text-align: center;
    }

    /* =========================
   MOBILE / TABLET NAVIGATION
   ========================= */

/* Hide the normal nav links by default on mobile */
@media screen and (max-width: 900px) {
    .nav-links {
        display: none; /* hide by default */
        flex-direction: column;
        position: absolute;
        top: 60px; /* below navbar */
        left: 0;
        width: 100%;
        background-color: black;
        border-top: 1px solid white;
        padding: 20px 0;
        gap: 10px;
        z-index: 100;
    }

    /* Show hamburger */
    .hamburger {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: white;
        user-select: none;
    }

    /* Hide the nav-cta button */
    .nav-cta {
        display: none;
    }

    /* When checkbox is checked, show nav-links */
    #nav-toggle:checked + .hamburger + .nav-links {
        display: flex;
    }

    /* Style nav items vertically */
    .nav-links li {
        margin: 0;
        padding: 10px 0;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 10px 20px;
        border: 1px solid white;
        border-radius: 6px;
    }

    /* Optional: remove separators on mobile */
    .nav-links li:not(:last-child)::after {
        content: none;
    }
}


    /* Footer adjustments */
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-right {
        align-items: center;
        justify-content: center;
        min-width: auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-info {
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .hero-image {
        height: 100px;
    }

    .hero-title {
        height: 80px;
    }

    .hero-address {
        font-size: 1rem;
    }

    .text-box h2 {
        font-size: 2.2rem;
    }

    .text-box p {
        font-size: 1rem;
    }



    body {
        font-size: 14px;
    }
}

/* HIDE COVER ON MOBILE / TABLET */
@media screen and (max-width: 1410px) {
    .cover {
        display: none !important;
        animation: none !important; 
    }
}


/* FOOTER MOBILE LAYOUT */
@media screen and (max-width: 900px) {
    .site-footer {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 20px;
    }

    /* Top row: */
    .footer-links {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 10px;
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-links .swap-img {
        width: 60px;
        height: 50px;
    }

    /* Bottom row container */
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .footer-info {
        text-align: left;
        font-size: 0.9rem;
    }

    .footer-socials {
        justify-content: flex-end;
        display: flex;
        gap: 8px;
    }
}




