/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #F5F0E8;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #F5F0E8; /* Beige pálido */
    color: #000000;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height para iOS */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-weight: 300;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: 20px 40px 0 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0;
    box-sizing: border-box;
}

/* Brand Name - Elegant Cursive */
.brand {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  
  .brand-logo {
    width: clamp(120px, 18vw, 220px);
    height: auto;
  }


.brand-name {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    letter-spacing: 3px;
    color: #000000;
    text-align: center;
    margin: 0;
    text-transform: lowercase;
    font-variant-ligatures: common-ligatures;
    line-height: 1;
    opacity: 0.95;
}

/* Coming Soon Section */
.coming-soon {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    z-index: 2;
    flex: 1 1 auto;
    min-height: 0;
}

.main-text {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.coming,
.soon {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.25rem, 3.5vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 4px;
    color: #000000;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
    opacity: 0.75;
}

.coming {
    margin-bottom: 4px;
}

.soon {
    margin-top: 0;
}

/* Stripes - Full Width and Responsive */
.stripe {
    position: fixed;
    width: 100vw;
    left: 0;
    right: 0;
    height: 60px;
    background-color: rgba(245, 224, 220, 0.25); /* Mucho más sutil */
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.stripe-wrapper {
    display: flex;
    align-items: center;
    will-change: transform;
    min-width: max-content;
}

.stripe-top {
    top: calc(50% - 60px);
    transform: translateY(-50%) rotate(-1.5deg);
}

.stripe-bottom {
    top: calc(50% + 60px);
    transform: translateY(-50%) rotate(1.5deg);
}

.stripe-top .stripe-wrapper {
    animation: slideRight 25s linear infinite;
}

.stripe-bottom .stripe-wrapper {
    animation: slideLeft 25s linear infinite;
}

.stripe-content {
    display: flex;
    align-items: center;
    gap: 60px;
    white-space: nowrap;
    padding: 0;
    min-width: max-content;
    will-change: transform;
    flex-shrink: 0;
}

.stripe-content span {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.6rem, 1.5vw, 0.8rem);
    font-weight: 200;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    display: inline-block;
    flex-shrink: 0;
}

/* Animations */
@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Footer - Estilo del proyecto */
.site-footer {
    background: radial-gradient(1200px 600px at 50% -10%, rgba(255,255,255,0.06), transparent 60%), 
                linear-gradient(135deg, #000000 0%, #111 100%);
    color: #ffffff;
    padding: clamp(6px, 1vw, 10px) 0;
    /* Pegado al fondo de la ventana, ocupando todo el ancho */
    margin: 0;
    width: 100vw;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2;
    flex: 0 0 auto;
    flex-shrink: 0;
    box-sizing: border-box;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.footer-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* Centra verticalmente el contenido dentro del footer
       para que los iconos no queden pegados al borde superior */
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0 clamp(10px, 2vw, 20px) 0 clamp(5px, 1vw, 10px);
    gap: clamp(12px, 2vw, 20px);
    box-sizing: border-box;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex: 0 1 auto;
    margin-left: -5px;
    margin-top: -2px;
    margin-bottom: -2px;
}

.footer-brand {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

.footer-brand-logo {
    width: clamp(140px, 12vw, 220px);
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
    vertical-align: top;
    object-fit: contain;
    object-position: left top;
}

.muted {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(9px, 0.9vw, 11px);
    line-height: 1.2;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: opacity 0.25s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.socials {
    display: flex;
    flex-direction: row;
    gap: clamp(4px, 0.8vw, 8px);
    align-items: center;
}

.socials a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    width: clamp(26px, 2.2vw, 30px);
    height: clamp(26px, 2.2vw, 30px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    transition: all 0.25s ease;
    font-size: clamp(8px, 0.8vw, 10px);
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.socials a:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px 20px 0 20px;
    }

    .brand {
        margin-bottom: 5px;
    }
    
    .site-footer {
        padding: 4px 0;
        margin: 0 -20px 0 -20px;
        width: calc(100% + 40px);
    }

    .coming-soon {
        margin: 0;
    }

    .stripe {
        height: 50px;
    }

    .stripe-top {
        top: calc(50% - 50px);
    }

    .stripe-bottom {
        top: calc(50% + 50px);
    }

    .stripe-content {
        gap: 40px;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 10px 0 5px;
        gap: 10px;
    }

    .footer-left {
        gap: 5px;
        margin-left: -3px;
    }

    .footer-right {
        align-items: center;
    }

    .socials {
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 12px 15px 0 15px;
    }

    .brand {
        margin-bottom: 5px;
    }

    .brand-name {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .coming,
    .soon {
        font-size: 1.25rem;
        letter-spacing: 3px;
    }

    .stripe {
        height: 45px;
    }

    .stripe-top {
        top: calc(50% - 45px);
    }

    .stripe-bottom {
        top: calc(50% + 45px);
    }

    .stripe-content {
        gap: 30px;
    }

    .footer-inner {
        padding: 0 8px 0 3px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-left {
        gap: 4px;
        margin-left: -2px;
    }

    .site-footer {
        padding: 3px 0;
        margin: 0 -15px 0 -15px;
        width: calc(100% + 30px);
    }

    .muted {
        font-size: clamp(7px, 2vw, 9px);
    }
}

/* Extra Large Screens */
@media (min-width: 1920px) {
    .stripe-content {
        gap: 80px;
    }

    .stripe {
        height: 100px;
    }
}
