/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --accent: #10b981;
    --bg-light: #f0f9ff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --card-shadow: 20px 20px 60px #d1d9e6, -20px -20px 60px #ffffff;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.5;
    font-size: 16px;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Custom Hero Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 80vh;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 2rem;
        text-align: center;
    }
    .hero-grid .flex {
        justify-content: center;
    }
}

/* Elevated Slab Cards */
.slab-card {
    background: white;
    border: 2px solid var(--text-main);
    box-shadow: 8px 8px 0px var(--text-main);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.slab-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px var(--primary);
}

/* Magnetic Buttons */
.btn-magnetic {
    position: relative;
    padding: 1rem 2rem;
    background: var(--text-main);
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: color 0.3s;
    display: inline-block;
    z-index: 1;
    min-height: 44px;
    cursor: pointer;
    border: none;
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--primary);
    transition: left 0.3s;
    z-index: -1;
}

.btn-magnetic:hover::before {
    left: 0;
}

/* Navigation */
.nav-link {
    position: relative;
    font-weight: 600;
    padding: 0.5rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
#mobile-menu {
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

#mobile-menu.active {
    transform: translateX(0);
}

#mobile-menu a {
    padding: 1rem;
    width: 100%;
    text-align: center;
}

/* Cookie Consent */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: none;
    width: 90%;
    max-width: 450px;
}

@media (max-width: 480px) {
    .text-6xl { font-size: 3.5rem; }
    .text-5xl { font-size: 2.5rem; }
}
