/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');


/* =========================
   GLOBAL
========================= */

body {
    background: white;
    color: black;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}


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

nav {
    padding: 30px 10px;
    text-align: center;
}

nav a {
    color: black;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}

nav a:hover {
    text-decoration: underline;
}


/* =========================
   HEADINGS
========================= */

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}


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

.hero {
    position: relative;
    min-height: 80vh;

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

    text-align: center;
    overflow: hidden;
}


/* =========================
   BACKGROUND SLIDESHOW
========================= */

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;

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

    opacity: 0;
    animation: slideshow 20s infinite;
}


/* Slide Timing */

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 5s;
}

.slide:nth-child(3) {
    animation-delay: 10s;
}

.slide:nth-child(4) {
    animation-delay: 15s;
}


/* =========================
   SLIDESHOW ANIMATION
========================= */

@keyframes slideshow {

    0% {
        opacity: 0;
    }

    3% {
        opacity: 1;
    }

    24% {
        opacity: 1;
    }

    27% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/* =========================
   DARK OVERLAY
========================= */

.hero-overlay {
    position: absolute;
    inset: 0;

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

    z-index: 1;
}


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

.hero-content {
    position: relative;
    z-index: 2;

    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 400;
}

.hero p {
    font-size: 12px;
    margin-top: 15px;
}


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

.hero-buttons a {
    display: inline-block;

    margin: 20px 10px;
    padding: 12px 30px;

    border: 1px solid white;
    color: white;

    text-decoration: none;

    transition: 0.3s;
}

.hero-buttons a:hover {
    background: white;
    color: black;
}


/* =========================
   WHY BITES & BRIGHTS
========================= */

.why-bites {
    max-width: 800px;

    margin: 0 auto;

    padding: 110px 30px;

    text-align: center;

    background: white;
}

.why-bites h2 {
    font-size: 36px;
    letter-spacing: 3px;

    margin-bottom: 30px;
}

.why-bites p {
    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 20px;
}


/* =========================
   WHAT I DO / SERVICES
========================= */

.services {
    max-width: 100%;

    margin: 0;

    padding: 110px 8%;

    text-align: center;

    background: #f8f8f8;

    box-sizing: border-box;
}

.services h2 {
    font-size: 36px;
    letter-spacing: 3px;

    margin-bottom: 50px;
}

.services-grid {
    max-width: 1000px;

    margin: 0 auto;

    display: grid;

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

    gap: 50px;
}

.service h3 {
    font-size: 19px;
    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 15px;
}

.service p {
    font-size: 15px;
    line-height: 1.8;

    margin: 0;
}


/* =========================
   WHAT CAN YOU EXPECT
========================= */

.experience {
    padding: 110px 8%;

    background: white;
}


/* Section Heading */

.experience-header {
    max-width: 650px;

    margin: 0 auto 80px;
}

.section-label {
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;

    text-transform: uppercase;
}

.experience-header h2 {
    font-size: 42px;
    font-weight: 700;

    margin: 0 0 20px;
}

.experience-intro {
    font-size: 17px;
    line-height: 1.7;

    margin: 0;
}


/* Experience List */

.experience-list {
    max-width: 950px;

    margin: 0 auto;
}


/* Individual Experience */

.experience-item {
    display: grid;

    grid-template-columns: 150px 1fr;

    column-gap: 45px;

    align-items: center;

    padding: 45px 0;

    border-bottom: 1px solid #d5d5d5;
}

.experience-item:first-child {
    border-top: 1px solid #d5d5d5;
}


/* Large Numbers */

.experience-number {
    font-size: 72px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: -4px;
}


/* Experience Content */

.experience-content {
    max-width: 600px;
}

.experience-content h3 {
    font-size: 23px;
    font-weight: 700;

    margin: 0 0 12px;
}

.experience-content p {
    font-size: 16px;
    line-height: 1.7;

    margin: 0;
}


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

.portfolio {
    max-width: 900px;

    margin: 80px auto;

    padding: 20px;

    text-align: center;
}

.portfolio h1 {
    font-size: 48px;

    margin-bottom: 20px;
}

.portfolio p {
    font-size: 18px;
    line-height: 1.6;

    margin-bottom: 40px;
}


/* =========================
   GALLERY
========================= */

.gallery {
    display: grid;

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

    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 300px;

    object-fit: cover;
}


/* =========================
   WORK PREVIEW
========================= */

.work-preview {
    max-width: 100%;

    margin: 0;

    padding: 110px 8%;

    text-align: center;

    background: #f8f8f8;

    box-sizing: border-box;
}

.work-preview h2 {
    font-size: 36px;
    letter-spacing: 3px;

    margin-bottom: 15px;
}

.work-preview > p {
    font-size: 16px;

    margin-bottom: 40px;
}

.work-preview-grid {
    max-width: 1000px;

    margin: 0 auto 40px;

    display: grid;

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

    gap: 20px;
}

.work-preview-grid img {
    width: 100%;
    height: 300px;

    object-fit: cover;
}


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

.section-button {
    display: inline-block;

    padding: 12px 30px;

    border: 1px solid black;

    color: black;

    text-decoration: none;

    transition: 0.3s;
}

.section-button:hover {
    background: black;
    color: white;
}


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

.about {
    max-width: 800px;

    margin: 80px auto;

    padding: 20px;

    text-align: center;
}

.about h1 {
    font-size: 48px;

    margin-bottom: 30px;
}

.about p {
    font-size: 18px;
    line-height: 1.8;

    margin-bottom: 20px;
}


/* =========================
   MEET SAMA
========================= */

.meet-sama {
    max-width: 900px;

    margin: 100px auto;

    padding: 60px 40px;

    text-align: center;

    background: #f5f5f5;
}

.meet-sama-content {
    max-width: 700px;

    margin: 0 auto;
}

.meet-sama h2 {
    font-size: 36px;

    letter-spacing: 3px;

    margin-bottom: 30px;
}

.meet-sama p {
    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 20px;
}

.meet-sama a {
    display: inline-block;

    margin-top: 20px;

    padding: 12px 30px;

    border: 1px solid black;

    color: black;

    text-decoration: none;

    transition: 0.3s;
}

.meet-sama a:hover {
    background: black;
    color: white;
}


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

.contact {
    max-width: 700px;

    margin: 80px auto;

    padding: 20px;

    text-align: center;
}

.contact h1 {
    font-size: 48px;

    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;

    margin-bottom: 40px;
}

.contact ul {
    list-style: none;

    padding: 0;
}

.contact li {
    margin: 20px 0;

    font-size: 18px;
}

.contact a {
    color: black;

    text-decoration: none;
}

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


/* =========================
   CLOSING SECTION
========================= */

.closing {
    max-width: 700px;

    margin: 0 auto;

    padding: 110px 30px;

    text-align: center;

    background: white;
}

.closing h2 {
    font-size: 32px;

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.closing p {
    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 30px;
}


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

footer {
    text-align: center;

    padding: 40px 20px;

    background: white;
}

.footer-content h3 {
    margin-bottom: 10px;
}

.footer-content p {
    margin-bottom: 20px;
}


/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
    display: flex;

    justify-content: center;

    gap: 20px;

    margin: 20px 0;
}

.social-icons a,
.social-icons a:visited {
    color: #000;

    display: flex;

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

    width: 45px;
    height: 45px;

    border-radius: 50%;

    text-decoration: none;

    font-size: 20px;

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

.social-icons a:hover {
    color: #000;

    transform: translateY(-4px);

    opacity: 0.75;
}

.copyright {
    font-size: 14px;

    margin-top: 25px;
}


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

@media (max-width: 768px) {


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

    nav {
        padding: 20px 10px;

        white-space: nowrap;
    }

    nav a {
        display: inline-block;

        margin: 0 8px;

        font-size: 12px;
    }


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

    .hero {
        min-height: 70vh;

        padding: 20px;
    }

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

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

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


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

    .hero-buttons a {
        margin: 10px 5px;

        padding: 10px 20px;
    }


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

    .slide {
        background-size: cover;

        background-position: center center;
    }


    /* =========================
       WHY BITES & BRIGHTS
    ========================= */

    .why-bites {
        margin: 0 auto;

        padding: 70px 25px;
    }

    .why-bites h2 {
        font-size: 28px;
    }

    .why-bites p {
        font-size: 16px;
    }


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

    .services {
        padding: 70px 25px;
    }

    .services h2 {
        font-size: 28px;

        margin-bottom: 40px;
    }

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

        gap: 40px;
    }

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


    /* =========================
       WHAT CAN YOU EXPECT
    ========================= */

    .experience {
        padding: 70px 6%;
    }

    .experience-header {
        margin-bottom: 55px;
    }

    .experience-header h2 {
        font-size: 34px;
    }

    .experience-intro {
        font-size: 16px;
    }

    .experience-item {
        grid-template-columns: 70px 1fr;

        column-gap: 20px;

        padding: 35px 0;
    }

    .experience-number {
        font-size: 50px;

        letter-spacing: -3px;
    }

    .experience-content h3 {
        font-size: 19px;

        margin-bottom: 9px;
    }

    .experience-content p {
        font-size: 15px;

        line-height: 1.7;
    }


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

    .portfolio {
        margin: 60px auto;
    }

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


    /* =========================
       GALLERY
    ========================= */

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

    .gallery img {
        height: auto;
    }


    /* =========================
       WORK PREVIEW
    ========================= */

    .work-preview {
        padding: 70px 25px;
    }

    .work-preview h2 {
        font-size: 28px;
    }

    .work-preview-grid {
        grid-template-columns: 1fr;
    }

    .work-preview-grid img {
        height: auto;
    }


    /* =========================
       MEET SAMA
    ========================= */

    .meet-sama {
        margin: 60px 20px;

        padding: 40px 25px;
    }

    .meet-sama h2 {
        font-size: 28px;
    }

    .meet-sama p {
        font-size: 16px;
    }


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

    .contact {
        margin: 60px auto;
    }

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


    /* =========================
       CLOSING
    ========================= */

    .closing {
        margin: 0 auto;

        padding: 70px 25px;
    }

    .closing h2 {
        font-size: 28px;
    }


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

    footer {
        padding: 35px 20px;
    }

    .social-icons {
        gap: 15px;
    }

}
