/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: barlow-medium, barlow, sans-serif;
    color: #000;
    line-height: 1.6;
    background-color: #fcfcfc;
}

.logo {
    font-size: 1.8rem;
}

/* Hero Section */
.hero {
    height: 80vh;
    background-image: url('/images/30e531_3da9e2a63a35477690fc4cbbccf05006~mv2.png'); /* Replace with your hero image URL */
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-size: 100% 100%;
    background-position: center;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom; 
    background-size: cover; */
}



.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #333;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Collections Grid */


.container {
    width: 90%;
    margin: 60px auto;
}
.about {
    width: 980px;
}

.container p {
    font-size: 15px;
    font-weight: 400;
    text-align: center;

    /* width: 980px; */
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    margin: 122px 0px 30px 0px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.grid-item {
    text-align: center;
    h3 {
        margin-top: 20px;
        font-size: 1.5rem;
    }
    p {
        margin-top: 10px;
        font-size: 0.9rem;
        color: #555;
    }
}

.contact {
    height: 560px;
    background: #e0e0e0; /* Replace with your hero image URL */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    /* width: 80%; */
    margin-inline: 85px;
}

.contact-content h3 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-content a {
    font-size: 15px;
    color: #333;
    text-decoration: none;
}

footer {
    padding: 40px;
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid #eee;
    /* color: #777; */
}