/* 
   LUERRA - Bare Essentials, Refined.
   Modern Ultra-Minimal Fullscreen Page
*/

:root {
    /* Exact Logo Palette */
    --bg-page: #F8F0E5;
    --text-dark: #382A1E;
    --text-muted: #6E5C4F;
    --accent-gold: #B89355;
    --accent-light: rgba(184, 147, 85, 0.12);
    --card-bg: rgba(255, 255, 255, 0.45);
    --border-subtle: rgba(56, 42, 30, 0.08);
    
    /* Fonts */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    /* Transitions */
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
    width: 100%;
    height: 100%;
}

body {
    background-color: var(--bg-page);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    padding: 2rem 1.5rem;
    -webkit-font-smoothing: antialiased;
}

/* Background Atmosphere */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: radial-gradient(rgba(56, 42, 30, 0.02) 1px, transparent 0);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
}

.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    z-index: -2;
}

.glow-top {
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(235, 220, 202, 0.6) 0%, rgba(248, 240, 229, 0) 70%);
}

.glow-bottom {
    bottom: -20%;
    right: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(215, 190, 160, 0.3) 0%, rgba(248, 240, 229, 0) 70%);
}

/* Main Layout */
.main-wrapper {
    width: 100%;
    max-width: 640px;
    margin: auto;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo Box */
.logo-box {
    width: 100%;
    max-width: 520px;
    margin-bottom: 2rem;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Transparent PNG guaranteed - no white background border */
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    max-width: 240px;
    margin-bottom: 2.8rem;
    opacity: 0.7;
    animation: fadeIn 1.2s ease;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.5;
}

.divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-gold);
}

/* Info Cards Container */
.info-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    max-width: 480px;
    margin-bottom: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 1.35rem 1.6rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(56, 42, 30, 0.03);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(184, 147, 85, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(56, 42, 30, 0.06);
}

.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.02);
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}

.info-text {
    font-style: normal;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 400;
}

.info-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.info-link {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    word-break: break-all;
}

.info-link:hover {
    color: var(--accent-gold);
}



/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .logo-box {
        max-width: 380px;
        margin-bottom: 1.5rem;
    }
    .info-card {
        padding: 1.1rem 1.3rem;
        gap: 1rem;
    }
    .info-text {
        font-size: 0.95rem;
    }
    .info-link {
        font-size: 0.98rem;
    }
}
