@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Playfair+Display:wght@400;700&family=Lora:wght@400;500&family=Roboto:ital,wght@0,100..900;1,100..900&family=Architects+Daughter&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Domine:wght@400..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* Global styles */
* {
    padding: 0;
    margin: 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;
    transition: transform 0.7s ease-in-out;
    align-items: center;
    width: 100%;
    height: 130px;
    top: 0;
    left: 0;
    z-index: 100;
}

.logo-header {
    width: 180px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    font-family: 'poppins', 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-gallery {
    position: relative;
    width: 100%;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin: 0;
    margin-bottom: 30px; 
}

.hero-gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(50%);
}

.hero-gallery-content {
    position: absolute;
    z-index: 2;
    color: white;
}

.hero-gallery-text {
    position: absolute;
    font-size: 48px;
    font-family: 'Merriweather', serif;
    transform: translate(-50%, -50%);
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    top: 58%;
    left: 50%;
    z-index: 2;
}

/* Photo gallery section */
.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 15px; 
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.container {
    max-width: 1224px;
    width: 90%;
    margin: auto;
    padding: 30px 0;
}

.photo {
    width: calc(33.33% - 13.33px);
    margin-bottom: 15px;
}

.photo img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* 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;
    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);
}

#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%;
        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);
    }

    .hamburger {
        display: flex;
    }

    .logo-header {
        width: 150px;
    }

    .hero-gallery {
        height: 50vh;
    }

    .hero-gallery-text {
        font-size: 32px;
    }

    .hero-gallery-image {
        filter: brightness(50%);
    }

    .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;
    }

    .photo {
        width: 48%;
    }

    .footer-hours {
        #info-last {
            padding-top: 10px;
        }
    }
}

@media (max-width: 480px) {
    .photo {
        flex: 1 1 100%; 
        max-width: 100%;
    }
}

