@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lora:wght@400;500&family=Roboto:wght@100..900&family=Architects+Daughter&family=Lato:wght@100..900&family=Domine:wght@400..700&family=Inter:wght@100..900&family=Noto+Sans:wght@100..900&family=Merriweather:wght@300..900&family=Poppins:wght@100..900&display=swap');

/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Navigation (Header) Styles */
nav {
    background-color: rgba(248, 248, 231);
    padding-right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 130px;
    position: absolute; 
    top: 0;
    left: 0;
    z-index: 100;
}

.logo-header {
    width: 180px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: black;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease-in-out; 
    position: relative;
}

.nav-links li a:hover {
    color: rgb(204, 159, 91); 
    transform: scale(1.1); 
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: rgb(204, 159, 91);
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.nav-links li a:hover::after {
    width: 100%;
    left: 0%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
    z-index: 1100;
    width: 25px; 
    height: 20px; 
}

.bar {
    width: 25px;
    height: 3px;
    background-color: black;
    transition: 0.4s;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(50%);
}

.hero-text {
    position: absolute;
    top: 58%; 
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Merriweather', sans-serif;
    word-spacing: 10px;
    text-align: center;
    width: 80%;
    z-index: 2;
}

.scroll-arrow {
    position: absolute;
    bottom: 30px; 
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    width: 30px;
    height: 30px;
    border-left: 5px solid white;
    border-bottom: 5px solid white;
    z-index: 10;
    animation: bounce 1.5s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(-45deg);
    }
    50% {
        transform: translateX(-50%) translateY(10px) rotate(-45deg);
    }
}

/* About Section */
.about {
    background-color: #a18967;
    padding-top: 80px;
    margin-top: -50px;
}

.about-us-container {
    display: grid;
    grid-template-columns: 1fr 2fr; 
    color: ivory;
    padding: 40px;

    h2 {
        display: flex;
        align-items: flex-start;
        font-size: 40px;
        padding-left: 20px;
        padding-top: 70px;
        font-family: 'Merriweather', serif;
    }

    .about-description {
        font-family: "poppins";
        font-size: 20px;
        padding-right: 20px;
    }
}

.about-divider {
    display: block;
    border: none;
    height: 5px;
    background: linear-gradient(to right, transparent, ivory 50%, transparent);
    margin: 30px 0;
    width: 100%; 
}

.about-images {
    display: flex;
    gap: 25px;
    overflow-x: auto; /* Enables horizontal scrolling */
    white-space: nowrap;
    scroll-behavior: smooth;
    max-width: 100%; /* Ensures it doesn't stretch beyond its container */
    padding-left: 20px;
    padding-right: 20px;
}

.about-images img {
    width: 380px; 
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    object-fit: contain;
    margin-top: 10px;
    margin-bottom: 40px;
}

/* Footer Section */
.footer {
    display: flex;
    background-image: url('footer-image.jpg'); 
    color: white;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    margin-top: 50px;
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center; 
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    align-items: flex-start; 
    max-width: 1200px; 
    width: 100%;
    margin: auto;
    gap: 40px; 
}

.footer-info,
.footer-hours,
.footer-social {
    flex: 1; 
    min-width: 250px; 
    text-align: center; 
}

.footer-info {
    flex: 1;
    min-width: 250px;
    text-align: left;
    padding-bottom: 60px;
    padding-left: 50px;
    padding-top: 20px;
    font-family: "poppins";    

    #location-dot {
        padding-top: 20px;
        padding-bottom: 10px;
        padding-right: 8px;
    }

    #envelope {
        padding-bottom: 10px;
        padding-right: 8px;
    }

    #phone {
        padding-bottom: 10px;
        padding-right: 8px;
    }
}

.footer-info p {
    font-size: 16px;
    margin-bottom: 8px;
    white-space: nowrap;
}

.footer-info a {
    color: white; 
    text-decoration: none; 
    transition: color 0.3s ease; 
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-hours {
    margin-top: 15px;
    padding-top: 10px;
    padding-right: 20px;
    padding-left: 100px;
    padding-bottom: 170px;
    font-family: "poppins";  

    #info {
        padding-top: 10px;
    }

    #info-last {
        padding-top: 10px;
    }
}

.footer-hours h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: rgb(204, 159, 91); 
    text-align: left;
    padding-bottom: 10px;
}

.footer-hours p {
    text-align: left;
    font-size: 16px;
    margin: 2px 0;
}

.footer-copy {
    display: flex;
    flex-direction: column; 
    align-items: center;
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
    font-family: "Poppins";
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.footer-copy p {
    margin-top: 18px;
    margin-bottom: 3px; 
    text-align: center;
}

.footer-copy h3 {
    text-align: center;
    margin-top: 15px; 
}

.footer-copy h3 .designer-name {
    color: gold;
}

.footer-social {
    text-align: left;
    padding-top: 20px;
    padding-bottom: 30px;
    padding-left: 70px;
}

.footer-social h4 {
    font-family: "poppins";
    font-size: 18px;
    color: rgb(204, 159, 91); 
    padding-bottom: 20px;
    padding-left: 10px;
    text-align: left;
}

.footer-social a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: rgb(204, 159, 91);
}

p span {
    padding-left: 7px;
}

#facebook-icon, 
#instagram-icon {
    font-size: 30px;    
}

#tiktok-icon {
    font-size: 28px;
}

.phone-number-two, .phone-number-three {
    padding-left: 30px;
}

/* Mobile section */
@media screen and (max-width: 768px) {

    nav {
        background-color: rgba(248, 248, 231);
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 100;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed; 
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; 
        background-color: rgba(248, 248, 231);
        justify-content: center;
        align-items: center;
        gap: 25px; 
        text-align: center;
        padding: 40px 0;
        transform: translateY(-100%); 
        transition: transform 0.7s ease-in-out; 
        z-index: 999;
    }

    .nav-links.nav-active {
        transform: translateY(0); 
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links li a {
        font-size: 20px; 
        text-decoration: none;
        color: black;
        transition: color 0.3s ease;
    }

    .nav-links li a:hover {
        color: rgb(204, 159, 91);
    }

    .nav-links li a:active {
    color: rgb(204, 159, 91);
    }

    .hamburger {
        display: flex;
    }

    .logo-header {
        width: 150px;
    }

    .desktop-video {
        display: none;
    }
    .mobile-video {
        display: block;
    }

    .about {
        margin-top: -30px; 
        padding-top: 20px;
    }

    .hero-content {
        width: 100%; 
    }

    .hero-text {
        position: absolute;
        top: 57%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 2rem;
        font-weight: bold;
        font-family: 'Merriweather', sans-serif;
        z-index: 2; 
        text-align: center;
        width: 80%;
    }

    .scroll-arrow {
        position: absolute;
        bottom: 100px; 
        left: 50%;
        transform: translateX(-50%) rotate(-45deg);
        width: 30px;
        height: 30px;
        border-left: 5px solid white;
        border-bottom: 5px solid white;
        z-index: 10;
        animation: bounce 1.5s infinite;
        cursor: pointer;
    }

    .about-us-container {
        display: flex;
        flex-direction: column; 

        h2 {
            align-self: flex-start; 
            padding-left: 10px; 
            padding-top: 20px;
            text-align: left; 
            font-size: 23px; 
        }

        .about-description {
            font-size: 15px;
            padding-left: 10px; 
            padding-top: 20px;
        }
    }

    .about-divider {
        display: block;
        border: none;
        height: 5px; 
        background: linear-gradient(to right, transparent, ivory 50%, transparent);
        margin: 30px 0;
        width: 100%; 
    }
    
    .about-images {
        display: flex;
        gap: 2px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-images img {
        width: 320px; 
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        object-fit: contain;
    }
    
    .footer-container,
    .footer-info,
    .footer-hours,
    .footer-social,
    .footer-copy,
    .footer {
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        display: block; 
    }
    
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-info,
    .footer-hours,
    .footer-social {
        padding: 20px 10px;
        text-align: center;
    }

    .footer-info {
        padding-top: 20px;
    }

    .footer-hours h4,
    .footer-hours p,
    .footer-social h4 {
        text-align: center;
    }

    .footer-copy {
        position: relative; 
        margin-top: 30px;
        padding-bottom: 10px;
    }

    .footer-copy p {
        text-align: center;
        margin-bottom: 5px; 
    }

    .footer-copy h3 {
        margin-top: 25px; 
        text-align: center;
    }

    .footer-copy h3 .designer-name {
        color: gold;
    }

    .footer-copy {
        text-align: center;
        padding-bottom: 8px;
    }

    .footer-social a {
        margin: 10px;
    }

    .footer-social {
        padding-bottom: 50px;
    }

    #facebook-icon {
        padding-left: 10px;
    }

    #facebook-icon, 
    #instagram-icon,
    #tiktok-icon {
        font-size: 30px;    
    }

    .footer {
        padding: 20px 10px;
    }

    .footer-social a:active {
        color: rgb(204, 159, 91);
    }   

    .footer-hours {
        #info-last {
            padding-top: 10px;
        }
    }
}
