/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900');
@import url('https://fonts.googleapis.com/css2?family=Fahkwang&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baskervville&display=swap');
/* Kate Spade */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* Under Armour */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');
/* Polaroid */

:root {
    --font-family-default: 'Lato', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    --font-size-large: 36px;
    --font-size-medium: 24px;
    --font-size-small: 16px;
    --font-size-xsmall: 12px;
    --color-primary: #333;
    --color-secondary: #ffffff;
    --color-background: #fdf7f2;
    /* Updated background color */
    --color-translucent-white: rgba(255, 255, 255, 0.8);
    --color-beige: #f5f5dc;
    --color-wood: #a0522d;
    --color-chocolate: #d2691e;
}

body {
    font-family: 'Open Sans', sans-serif;
    /* Use Open Sans font as default */
    font-weight: 100;
    font-weight: lighter;
    background-color: var(--color-background);
    color: var(--color-primary);
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fahkwang', sans-serif;
    /* Use Fahkwang for headings */
    font-weight: normal;
    /* Ensure normal font weight for headings */
}

p {
    font-family: 'Helvetica', sans-serif;
    /* Use Helvetica for paragraphs */
    font-weight: normal;
    /* Ensure normal font weight for paragraphs */
}

#SITE_HEADER {
    background-color: #f5f5f5d8;
    /* Assuming translucent white */
    color: #000;
    /* Assuming primary color */
    padding: 0;
    position: static;
    height: 115px;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: top 0.3s;
    /* Added transition for smooth effect */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    height: 100px;
    /* Updated height */
}

#SITE_HEADER h1 {
    margin: 0;
    margin-top: -1px;
    margin-left: -16px;
    font-size: 36px;
    /* Adjust this size to match the image */
    font-weight: normal;
    /* Updated font weight */
    line-height: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#SITE_HEADER h1 span {
    display: block;
    font-weight: normal;
}

#SITE_HEADER nav {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Center align horizontally */
}

#SITE_HEADER nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    /* Changed from align-items to justify-content */
}

#SITE_HEADER nav ul li {
    margin: 0 60px;
}

#SITE_HEADER nav ul li a {
    text-decoration: none;
    color: rgba(167, 173, 174, 0.911);
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 20;
    /* Specify font weight */
    font-size: 20px;
    /* Specified size */
    transition: color 0.3s;
}

#SITE_HEADER nav ul li a:hover {
    color: #A52A2A;
    /* Assuming wood color */
}

#SITE_MAIN {
    margin-top: 100px;
    /* Adjusted to match header height */
    padding: 20px;
    background-color: var(--color-background);
    /* Updated background color */
}

/* Hide header on scrolling down */
#SITE_HEADER.hidden {
    top: -100px;
    /* Move the header out of view */
}

.content h2 {
    font-size: 55px;
    font-weight: bold;
    margin-left: 55px;
}

.company-desc {
    text-align: center;
    padding: 0 150px;
    background-color: var(--color-background);
    color: var(--color-primary);
}

.company-desc p {
    font-family: 'Fahkwang', sans-serif;
    font-size: var(--font-size-medium);
    margin: 10px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* Single column layout for mobile */
    gap: 20px;
    /* Reduced gap for mobile */
    margin: 0 15px;
    /* Adjusted margin for mobile */
}

@media (min-width: 600px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Two columns for tablets and larger devices */
    }
    .portfolio-item.range-rover {
        grid-column: 1 / 2;
    }
}

@media (min-width: 1000px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Back to three columns for larger screens */
        margin: 0 45px;
        /* Restoring original margin */
    }
}

.portfolio-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 100%;
    height: 170px;
    /* Adjusted height for mobile */
    background-color: #ffffff;
    /* Default background color */
}

.portfolio-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.portfolio-item img {
    max-width: 95%;
    max-height: 70%;
    object-fit: contain;
    border-radius: 10px;
}

.portfolio-item.kate-spade {
    background-color: #007A0D;
}

.portfolio-item.polaroid {
    background-color: #ffcc00;
}

.portfolio-item.range-rover {
    background-color: #000000;
    grid-column: 2 / 3;
}

.portfolio-item.defender {
    background-color: #000000;
}

.portfolio-item.etro {
    background-color: #3c0912;
}

.portfolio-item.levis {
    background-color: #ffffff;
}

.portfolio-item.fossil {
    background-color: #ffffff;
}

.portfolio-item.o-six {
    background-color: #ffffff;
}


.hero {
    text-align: center;
    padding: 30px 0;
    background-color: #fe003b5a;
    width: 100%;
    margin-top: -100px;
    margin-bottom: 40px;
    margin-left: 0;
    /* Remove left margin */
    margin-right: 0;
    /* Remove right margin */
}


.slideshow-container {
    max-width: 1200px;
    position: relative;
    margin: auto;
}

.slide {
    display: none;
}

.slide img {
    display: block;
    /* Ensure images are displayed as blocks */
    max-width: 100%;
    visibility: visible;
    height: 600px;
    max-height: 100%;
    width: auto;
    /* Remove fixed width */
    height: auto;
    /* Remove fixed height */
    object-fit: contain;
}


.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.5);
    /* Added background color */
}

.prev {
    left: 0;
}

.next {
    right: 0;
    border-radius: 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dot {
    cursor: pointer;
    height: 5px;
    width: 5px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.vision {
    background-color: var(--color-background);
}

.vision-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.vision-left {
    text-align: left;
    width: 30%;
}

.vision-left h2 {
    font-size: 30px;
    font-weight: var(--font-weight-bold);
    color: #846262;
    line-height: 25px;
}

.alignment {
    margin-bottom: -20px !important;
    font-size: 150%;
}

.thick-dash {
    display: inline-block;
    border-top: 5px solid #a8a29c;
    /* Adjust the thickness and color as needed */
    width: 45px;
    /* Adjust the width as needed */
    vertical-align: middle;
    /* Align vertically in the middle */
    line-height: 0px;
}

.read-more-button {
    display: inline-block;
    background-color: #a8a29c;
    color: white !important;
    font-family: 'Fahkwang', sans-serif !important;
    padding: 10px 18px;
    /* Padding for top/bottom and left/right */
    text-decoration: none;
    /* Remove underline from text */
    font-size: 18px;
    /* Font size */
    text-align: center;
}

.read-more-button:hover {
    background-color: #5b4530;
    /* Slightly darker shade for hover effect */
}


.vision-left p:hover {
    color: var(--color-wood);
}

.vision-left a {
    text-decoration: none;
    /* Remove underline */
    color: inherit;
    /* Inherit color from parent */
}

.vision-left a:visited {
    text-decoration: none;
    /* Remove underline when visited */
    color: inherit;
    /* Maintain the same color when visited */
}

.vision-right {
    width: 70%;
    text-align: right;
}

.vision-right img {
    width: 350px;
    height: 350px;
}

.contact-form {
    width: 60%;
    margin: 0 auto;
    background-color: var(--color-beige);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    font-family: 'Fahkwang', sans-serif;
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
}

.contact-form button {
    background-color: var(--color-wood);
    color: var(--color-secondary);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: var(--color-chocolate);
}

.contact-info {
    margin-top: 20px;
    text-align: center;
}

.contact-info h3 {
    font-size: var(--font-size-medium);
    font-weight: var(--font-weight-bold);
    color: var(--color-wood);
}

.contact-info p {
    font-size: var(--font-size-small);
    color: var(--color-primary);
}

.about-hero {
    text-align: center;
    padding: 0;
    background-color: var(--color-background);
    color: var(--color-primary);
}

.about-hero h1 {
    font-size: 53px;
    margin: 0;
}

.about-hero p {
    font-family: 'Fahkwang', sans-serif;
    font-size: var(--font-size-medium);
    margin: 10px 0;
}

.about-content {
    margin: 1px 0;
    background-color: var(--color-background);
    padding: 10px 0;
}

.about-intro {
    width: 60%;
    margin: 0 auto;
    padding: 5px 0;
    text-align: center;
    font-size: 120%;
}

.about-image img {
    margin-top: 55px;
    margin-left: 0;
    margin-right: -450px;
    width: 100%;
    height: 300px;
}

.about-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* No gap for shared borders */
    margin: 20px 0;
    align-items: center;
}

.about-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    /* Remove padding from the about-section */
    border: 1px solid #ccc;
    box-sizing: border-box;
    height: 600px;
    /* Increased height */
}

.about-section img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0;
}

.about-section h3 {
    margin: 10px 0 5px;
    font-size: 250%;
    text-align: center;
}

.about-section p,
.about-section ul {
    margin: 25px 0;
    text-align: center;
    font-size: 120%;
}


.about-section ul {
    list-style-type: none;
    padding: 0;
}

.about-section ul li::before {
    content: "◉";
    margin-right: 0.5em;
    font-style: normal;
    font-size: 75%;
}

.about-section ul li {
    margin: 5px 0;
    font-family: 'Helvetica', sans-serif;
}

#SITE_FOOTER {
    background-color: var(--color-translucent-white);
    color: var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    text-align: center;
}

.footer p {
    margin: 0;
    flex: 1;
    /* Take up remaining space */
}

.footer-icons {
    margin-left: auto;
    /* Push icons to the right */
    display: flex;
    gap: 30px;
    /* Adjust gap between icons */
}

.icon-link {
    color: #000000;
    font-size: 24px;
    text-decoration: none;
}

#logo-top-section {
    display: flex;
    justify-content: center;
}

.logo-top {
    justify-content: center;
}

.logo-top img {
    margin-top: 35px;
    margin-bottom: 50px;
    height: auto;
    width: 200px;
    justify-self: center;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding: 20px;
    max-width: calc(100vw - 100px);
    /* Subtract gap to align margins */
    margin: 0 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: 4px solid #00000058;
    height: auto;
    align-content: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        border: 2px solid #00000058;
        padding: 8px;
        margin: 40px;
    }
}

@media (max-width: 600px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        border: 2px solid #00000058;
        padding: 8px;
        margin: 40px;
    }
}

@media (max-width: 481px) {
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 8px;
        row-gap: 100px;
        padding: 50px;
        margin: 10px 10px 10px 10px;
        max-width: calc(100vw);
    }

    .gallery-item {
        border: 2px solid #00000058;
        padding: 8px;
        margin: 30px;
    }

    .gallery-item img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* Main container for the entire lookbook section */
#lookbook {
    display: flex;
    justify-content: center;  /* Center content horizontally */
    align-items: center;      /* Center content vertically */
    height: 100vh; 
    margin-top: 10px;
}

/* Container for both the lookbook and the button */
.lookbook-container {
    text-align: center;       /* Centers content within this container */
    display: block;           /* Stack children vertically */
    align-items: center;
    margin-top: 10px;
}

/* Container for the lookbook embed (to control margin and other properties) */
.lookbook-embed-container {
    margin-bottom: 50px;  /* Adds space between the lookbook and the button */
}

/* Default styles (for smaller screens) */
.lookbook-embed-container {
    display: none;  /* Hide the PDF embed on smaller screens */
}

/* Show the PDF embed only on larger screens (PCs, for example) */
@media (min-width: 768px) {
    .lookbook-embed-container {
        display: block;  /* Show the PDF embed on screens wider than 768px */
    }
}

/* Lookbook embed styling */
.lookbook-embed {
    width: 80vw;              /* 80% of the viewport width */
    height: 500px;            /* Fixed height */
    display: block;           /* Ensures it behaves as a block-level element */
    margin: 0 auto;           /* Centers the embed horizontally */
}

.lookbook-download-button{
    margin-bottom: 20px;
}

.lookbook-download-button button {
    padding: 10px 18px;       /* Padding for top/bottom and left/right */
    font-size: 18px;          /* Font size */
    color: rgb(93, 66, 4) !important; /* Text color */
    font-family: 'Fahkwang', sans-serif !important; /* Font family */
    text-decoration: none;    /* Remove underline */
    text-align: center;       /* Center text in the button */
    border-radius: 5px;       /* Rounded corners */
    cursor: pointer;         /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth background transition */
    border: 2px solid rgb(93, 66, 4); /* Optional border color */
    background-color: #fff;   /* Default background color */
}

/* Hover effect on the button */
.lookbook-download-button button:hover {
    background-color: rgb(93, 66, 4); /* Darker background on hover */
    color: #fff;                   /* Change text color to white */
}

/* Remove text decoration from the anchor */
.lookbook-download-button a {
    text-decoration: none;
}


@media (min-width: 482px) and (max-width: 900px) {
    #SITE_HEADER {
        height: auto;
        padding: 10px 0;
        background-color: #f0f0f0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .header-inner {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    #SITE_HEADER .logo {
        text-align: left;
        margin-right: 5px;
    }

    #SITE_HEADER h1 {
        margin: 0;
        font-size: 36px;
        font-weight: normal;
        line-height: 1;
    }

    #SITE_HEADER h1 span {
        display: block;
        font-weight: normal;
    }

    #SITE_HEADER nav {
        width: 100%;
        /* Ensure the navigation spans the full width */
    }

    #SITE_HEADER nav ul {
        display: flex;
        justify-content: center;
        padding: 0;
        margin: 0;
        list-style: none;
        width: 100%;
        flex-wrap: wrap; /* Allow items to wrap to the next line */
    }

    #SITE_HEADER nav ul li {
        margin: 0 3px;
        text-align: center;
        flex: 1 0 auto; /* Flex item can grow and shrink with flex-wrap */
        max-width: calc(100% / 4 - 6px); /* Adjust based on number of items */
        box-sizing: border-box;
    }

}

@media (max-width: 480px) {
    body {
        font-size: var(--font-size-small);
    }

    #SITE_HEADER {
        height: auto;
        padding: 10px 0;
        background-color: #f0f0f0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
    }

    .header-inner {
        width: 100%;
        margin-top: -7px;
        padding: 100px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    #SITE_HEADER .logo {
        text-align: center;
        /* Center the logo */
        margin-bottom: 10px;
        /* Add margin between logo and nav */
    }

    #SITE_HEADER h1 {
        margin: 0;
        font-size: 36px;
        font-weight: normal;
        line-height: 1;
    }

    #SITE_HEADER h1 span {
        display: block;
        font-weight: normal;
    }

    #SITE_HEADER nav {
        width: 100%;
        /* Ensure the navigation spans the full width */
    }

    #SITE_HEADER nav ul {
        display: flex;
        flex-wrap: wrap;
        /* Allow items to wrap to next line */
        justify-content: center;
        /* Center items horizontally */
        padding: 0;
        margin: 0;
        list-style: none;
        width: 100%;
        /* Ensure the ul spans the full width */
    }

    #SITE_HEADER nav ul li {
        width: 50%;
        /* Each li takes up half the width */
        margin: 10px 0;
        text-align: center;
        /* Center text within li */
    }


    #SITE_MAIN {
        margin-top: 20px;
        padding: 10px;
    }

    .company-desc {
    padding: 0 50px;
}

    .portfolio-grid {
        grid-template-columns: 1fr;
        /* Single column layout for mobile */
        gap: 10px;
        /* Reduced gap for mobile */
        margin: 0 10px;
        /* Adjusted margin for mobile */
    }

    .portfolio-item {
        height: 170px;
        /* Adjust height to fit content */
    }

    .portfolio-item.range-rover {
        background-color: #000000;
        grid-column: 1 / 2;
    }

    .hero {
        margin-top: 0;
        /* Adjust margin for smaller screens */
        padding: 20px 0;
    }

    .slideshow-container {
        max-width: 100%;
    }

    .slide img {
        height: auto;
        /* Adjust image height for smaller screens */
    }

    .vision-content {
        width: 90%;
        /* Adjust width for smaller screens */
    }

    .vision-left h2 {
        font-size: 24px;
        /* Adjust font size */
    }

    .vision-right img {
        width: 100%;
        /* Adjust image width */
        height: auto;
        /* Adjust image height */
    }

    .contact-form {
        width: auto;
    }

    .contact-form textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid var(--color-primary);
        border-radius: 5px;
    }

    .about-hero {
        width: 90%;
        /* Adjust form width for smaller screens */
    }

    .about-hero h1 {
        font-size: 36px;
        /* Adjust heading font size */
    }

    .about-image img {
        margin-top: 35px;
        /* Adjust image margin */
        margin-bottom: 0;
        /* Remove bottom margin */
        width: 100%;
        /* Adjust image width */
        height: auto;
    }

    .about-section {
        height: auto;
        width: 100%;
        /* Adjust section height */
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0;
        /* Remove padding from the about-section */
        border: 1px solid #ccc;
        box-sizing: border-box;
    }

    .about-section h3 {
        font-size: 24px;
        /* Adjust heading font size */
    }

    .about-section img {
        width: 100%;
        height: auto;
        margin:auto 0px;
        padding: auto 0px;
    }

    .about-section p,
    .about-section ul {
        font-size: 100%;
        /* Adjust text size */
    }

    .about-section ul li {
        font-weight: 400;
    }

    .about-section-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        /* No gap for shared borders */
        margin: 20px 0;
        align-items: center;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        /* Single column layout for mobile */
        gap: 8px;
        /* Reduced gap for mobile */
        padding: 10px;
        margin: 0;
    }

    .gallery-item {
        border: 2px solid #00000058;
        padding: 8px;
    }

    .gallery-item img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
}
