/* 
    Almoda Coming Soon - Design System
    Premium Sahara Sand Aesthetic
*/

:root {
    /* Colors */
    --clr-bg: #fbf9f8;
    --clr-surface: #ffffff;
    --clr-primary: #5f5e5a;
    --clr-secondary: #a89f91;
    --clr-accent: #c9c6c1;
    --clr-text: #1b1c1c;
    --clr-text-muted: #474741;
    --clr-line: #e4e2dc;
    --clr-glass: rgba(255, 255, 255, 0.7);
    --clr-glass-border: rgba(255, 255, 255, 0.3);

    /* Typography */
    --ff-display: 'Noto Serif', serif;
    --ff-body: 'Manrope', sans-serif;

    /* Spacing */
    --unit: 1rem;
    --container-max: 1280px;

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

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

/* Page Background Texture */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    overflow: hidden;
}

.page-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15; /* Subtle transparency */
    filter: sepia(0.3) saturate(0.8);
}

.page-background .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, var(--clr-bg) 80%);
}

body {
    font-family: var(--ff-body);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography Scale */
h1, h2, h3 { font-family: var(--ff-display); font-weight: 400; }

.display-xl { font-size: clamp(2.5rem, 8vw, 4.5rem); line-height: 1.1; letter-spacing: -0.02em; }
.headline-lg { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.2; }
.label-caps { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.3em; font-weight: 600; color: var(--clr-text-muted); }

/* Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 4rem;
    width: 100%;
}

/* Header */
header {
    width: 100%;
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.brand-name {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--clr-text);
}

/* Main Content */
main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
}

/* Circular Image */
.image-container {
    display: flex;
    justify-content: flex-end;
}

.circular-frame {
    width: clamp(300px, 40vw, 500px);
    height: clamp(300px, 40vw, 500px);
    border-radius: 50%;
    border: 1px solid var(--clr-line);
    padding: 1rem;
    background: var(--clr-surface);
    overflow: hidden;
    position: relative;
    animation: fadeIn 1.5s ease-out;
}

.circular-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: sepia(0.2) contrast(1.1);
    transition: transform 1s ease-out;
}

.circular-frame:hover img {
    transform: scale(1.05);
}

/* Text Content */
.content-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Contact Blocks */
.contact-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--clr-line);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item a, .contact-item address {
    font-family: var(--ff-body);
    font-size: 1rem;
    color: var(--clr-text);
    text-decoration: none;
    font-style: normal;
    transition: var(--transition-base);
}

.contact-item a:hover {
    color: var(--clr-secondary);
}

/* Countdown */
.countdown-minimal {
    display: flex;
    gap: 2.5rem;
    margin-top: 1rem;
}

.timer-unit {
    display: flex;
    flex-direction: column;
}

.timer-value {
    font-family: var(--ff-display);
    font-size: 2rem;
    color: var(--clr-primary);
}

.timer-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--clr-text-muted);
}

/* Footer */
footer {
    width: 100%;
    padding: 3rem 0;
    border-top: 1px solid var(--clr-line);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-nav {
    display: flex;
    gap: 3rem;
}

.social-nav a {
    font-family: var(--ff-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--clr-text);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.social-nav a:hover {
    color: var(--clr-secondary);
    transform: translateY(-2px);
}

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

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .image-container { justify-content: center; }
    .contact-group { border-left: none; padding-left: 0; align-items: center; }
    .countdown-minimal { justify-content: center; }
    .footer-inner { flex-direction: column; gap: 2rem; }
}
