/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Text:wght@400;500;600;700;800;900&display=swap');
*{
    font-family: 'Big Shoulders Text', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
    text-decoration: none;
    list-style: none;
}
/* Some variables */

:root{
    --main-color: #273fa1;
    --text-color: #000;
    --bg-color: #ffffff;
    --container-color: #1e1e2a;
}

body{
    margin: 0;
    color: var(--text-color);
    background: var(--bg-color);
    position: relative;
    min-height: 100vh;
    padding-bottom: 3em;
}

img{
    width: 100%;
}

section{
    padding: 4rem 0 2rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for better visibility */
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 10px 20px;
}

#menu-icon{
    display: none;
    font-size: 28px;
    color: var(--main-color);
    cursor: pointer;
    flex-shrink: 0;
}

.logo{
    font-size: 1.5rem;
    color: var(--main-color);
    text-transform: uppercase;
    font-weight: 700;

}

.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    margin-left: 20px;
}

.nav-link{
    color: var(--main-color);
    font-size: 1.025rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
}

#cart-icon{
    margin-right: 20px; /* Add margin to the cart icon */
    position: relative;
    font-size: 1.8rem;
    color: var(--main-color);
    cursor: pointer;
    flex-shrink: 0;
}

#cart-icon[data-quantity="0"]::after {
    content: "";
}

#cart-icon[data-quantity]::after {
    content: attr(data-quantity);
    position: absolute;
    top: 0;
    right: -11px;
    width: 20px;
    height: 20px;
    background-color: var(--main-color);
    border-radius: 50%;
    color: var(--bg-color);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center the logo in the middle of the page */
.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.logo-container img {
    max-width: 600px;
    height: auto;
}

/* Adjust the spacing and size of the "Muy Pronto" text */
.coming-soon {
    font-size: 4rem;
    color: #333;
    margin-top: 40px;
}

.center{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35vh;
    position: relative;
}

.ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    animation: ring 2s linear infinite;
}

.footer{
    background-color: #f5e9dc;
    padding: 1rem 2rem;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    /* Ensure the footer spans the full width without gaps */
    width: 100vw;
    margin: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
}

p{
    text-align: right;
}
.social-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    font-size: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

@keyframes ring{
    0%{
        transform: rotate(0deg);
        box-shadow: 1px 5px 2px #e65c00;
    }
    50%{
        transform: rotate(180deg);
        box-shadow: 1px 5px 2px #18b201;
    }
    100%{
        transform: rotate(360deg);
        box-shadow: 1px 5px 2px #0456c8;
    }
}

.ring:before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255,255,255,.3);
}

/*.loading{
    font-size: 20px;
    color: #737373;
    text-transform: uppercase;
    margin-top: 100px;
    letter-spacing: 1px;
    line-height: 200px;

} */

span{
    color: white;
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 200px;
    animation: text 3s ease-in-out infinite;
}

@keyframes text{
    50%{
        color: black;       
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container {
        top: 40%;
        transform: translate(-50%, -40%);
    }

    .logo-container img {
        max-width: 300px;
    }

    .coming-soon {
        font-size: 2rem;
    }

    .ring {
        width: 60px;
        height: 60px;
        border-width: 6px;
    }

    span {
        font-size: 16px;
        line-height: 150px;
    }

    .navbar {
        margin-left: 20px;
        gap: 10px; /* Ensure equal spacing between all nav links */
    }

    .nav {
        flex-wrap: nowrap;
        padding: 10px;
    }

    .navbar {
        flex-grow: 1;
        justify-content: space-around;
        margin-left: 0;
    }

    #menu-icon {
        display: block;
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }

    #cart-icon {
        font-size: 1.2rem;
        margin-right: 5px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        top: 30%;
        transform: translate(-50%, -30%);
    }

    .logo-container img {
        max-width: 200px;
    }

    .coming-soon {
        font-size: 1.5rem;
    }

    span {
        font-size: 12px;
        line-height: 100px;
    }

    .navbar {
        margin-left: 20px;
    }
}