/* Reset y estilos base */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
    background-color: #16215e;
    color: white;
}

/* Definición de fuentes personalizadas */
@font-face {
    font-family: 'Archia';
    src: url('/Media/Fonts/Archia-Bold.otf');
    font-display: swap;
}

@font-face {
    font-family: 'GLDDisplay';
    src: url('/Media/Fonts/GLDDisplay-Black.ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Gordqucikblack';
    src: url('/Media/Fonts/gordqucikblack-p7erv.otf');
    font-display: swap;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('/Media/Fonts/MyriadPro-Regular.otf');
    font-display: swap;
}

@font-face {
    font-family: 'PressStart2P';
    src: url('/Media/Fonts/PressStart2P-Regular.ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Rockwell';
    src: url('/Media/Fonts/Rockwell.ttc');
    font-display: swap;
}

@font-face {
    font-family: 'TAN-BUSTER';
    src: url('/Media/Fonts/TAN-BUSTER.otf');
    font-display: swap;
}

/* Estilos de la barra de navegación */
.navbar {
    background-color: #002060;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 80px;
}

.logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo-img {
    max-height: 60px;
    width: auto;
    max-width: calc(100% - 120px);
    object-fit: contain;
}

.language-button, .menu {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: #fdd278;
    border: 1px solid #fdd278;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 2;
}

.language-button {
    right: 20px;
}

.menu {
    left: 20px;
    font-size: 30px;
    display: flex;
    align-items: center;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 24px;
}

.menu-icon div {
    height: 3px;
    background-color: #fdd278;
    margin: 2px 0;
}

.menu-content {
    display: none;
    background-color: #1a276f;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.menu-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.menu-content a:hover {
    background-color: #570edf;
}

.menu:hover .menu-content {
    display: block;
}

/* Estilos del contenido principal */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content {
    display: flex;
    flex-wrap: wrap;
    background-color: #002060;
}

.left-column, .right-column {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.closet, .entretaiment, .garage, .kitchen, .pantry {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fed279;
    font-family: 'Gordqucikblack', sans-serif;
}

.cta-button {
    display: inline-block;
    background-color: #fed279;
    color: #002060;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
    border-radius: 25px;
}

.subtext {
    margin-top: 10px;
}

.main-text {
    margin-bottom: 20px;
}

.go-to-menu {
    display: flex;
    align-items: center;
    color: #fed279;
    text-decoration: none;
    font-weight: bold;
}

.arrow {
    width: 30px;
    height: 30px;
    background-color: #fed279;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #002060;
    border-right: 2px solid #002060;
    transform: translate(-75%, -50%) rotate(-135deg);
}

/* Estilos de iconos sociales */
.iconFb, .iconIg, .iconTikTok {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}

.iconFb { background-image: url('/Media/Icons/LOGOFB.svg'); }
.iconIg { background-image: url('/Media/Icons/LOGOIG.svg'); }
.iconTikTok { background-image: url('/Media/Icons/LOGOTIKTOK.svg'); }

/* Estilos específicos */
#closet-images {
    width: 100%;
    height: auto;
}

#footer-placeholder {
    width: 100%;
}

/* Media queries para responsividad */
@media (max-width: 768px) {
    .navbar {
        padding: 5px 15px;
        min-height: 60px;
    }

    .menu-icon {
        height: 20px;
        width: 20px;
    }

    .menu-icon div {
        height: 2px;
    }

    #logo-img {
        max-height: 50px;
        max-width: calc(100% - 100px);
    }

    .language-button {
        padding: 6px 10px;
        font-size: 14px;
        right: 15px;
    }

    .menu {
        left: 15px;
    }

    .content {
        flex-direction: column;
    }

    .left-column, .right-column {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 5px 12px;
        min-height: 50px;
    }

    .menu-icon {
        height: 18px;
        width: 18px;
    }

    #logo-img {
        max-height: 40px;
        max-width: calc(100% - 80px);
    }

    .language-button {
        padding: 4px 8px;
        font-size: 12px;
        right: 12px;
    }

    .menu {
        left: 12px;
    }
}