﻿@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', sans-serif;
    background: #f0ede8;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Asymmetric Hero */
.asymmetric-hero {
    position: relative;
    padding: 4rem 4rem 6rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-text h1 {
    display: flex;
    flex-direction: column;
}

.word {
    display: block;
    font-size: 7rem;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -3px;
    opacity: 0;
}

.word-1 {
    animation: wordSlide 0.8s ease 0.2s forwards;
    color: #1a1a1a;
}

.word-2 {
    animation: wordSlide 0.8s ease 0.4s forwards;
    margin-left: 8rem;
    color: transparent;
    -webkit-text-stroke: 2px #1a1a1a;
}

.word-3 {
    animation: wordSlide 0.8s ease 0.6s forwards;
    color: #1a1a1a;
}

@keyframes wordSlide {
    from { opacity: 0; transform: translateX(-60px) skewX(-5deg); }
    to { opacity: 1; transform: translateX(0) skewX(0); }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0;
}

.fe-inner {
    border-radius: 16px;
    padding: 1.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.fe-inner:hover {
    transform: rotate(0deg) scale(1.05) !important;
}

.fe-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fe-year {
    font-size: 1.2rem;
    font-weight: 700;
}

.fe-1 {
    right: 15%;
    top: 15%;
    width: 160px;
    height: 180px;
    animation: floatIn1 0.8s ease 0.8s forwards;
}

.fe-1 .fe-inner { transform: rotate(-5deg); }

.fe-2 {
    right: 30%;
    top: 40%;
    width: 140px;
    height: 160px;
    animation: floatIn2 0.8s ease 1s forwards;
}

.fe-2 .fe-inner { transform: rotate(3deg); }

.fe-3 {
    right: 10%;
    bottom: 10%;
    width: 150px;
    height: 170px;
    animation: floatIn3 0.8s ease 1.2s forwards;
}

.fe-3 .fe-inner { transform: rotate(-8deg); }

@keyframes floatIn1 {
    from { opacity: 0; transform: translateY(-50px) rotate(-10deg); }
    to { opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes floatIn2 {
    from { opacity: 0; transform: translateX(50px) rotate(10deg); }
    to { opacity: 1; transform: translateX(0) rotate(0); }
}

@keyframes floatIn3 {
    from { opacity: 0; transform: translateY(50px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Asymmetric Grid */
.asymmetric-grid {
    padding: 0 4rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.grid-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.grid-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.grid-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gi-large {
    flex: 2;
}

.gi-small {
    flex: 1;
}

.gi-medium {
    flex: 1;
}

.gi-content {
    border-radius: 20px;
    padding: 2.5rem;
    color: #fff;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gi-content:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.gi-number {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.5;
    letter-spacing: 2px;
}

.gi-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gi-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.gi-content p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

.gi-arrow {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.gi-content:hover .gi-arrow {
    opacity: 1;
    transform: translate(3px, -3px);
}

/* Row offsets for asymmetry */
.row-2 {
    margin-left: 3rem;
}

.row-3 .gi-content {
    height: 220px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 6rem 2rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-section em {
    font-style: italic;
    color: #e55039;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    background: #e55039;
}

/* Responsive */
@media (max-width: 968px) {
    .word {
        font-size: 4rem;
    }
    .word-2 {
        margin-left: 2rem;
    }
    .floating-element {
        display: none;
    }
    .grid-row {
        flex-direction: column;
    }
    .row-2 {
        margin-left: 0;
    }
    .asymmetric-grid {
        padding: 0 1.5rem 2rem;
    }
    .navbar {
        padding: 1.5rem;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
}



/* Watermark */
body {
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='180' viewBox='0 0 260 180'%3E%3Cg transform='rotate(-20 130 90)'%3E%3Ctext x='0' y='40' fill='rgba(154,154,154,0.10)' font-size='14' font-family='Arial, sans-serif'%3EPandec%20Digital%3C/text%3E%3Ctext x='30' y='90' fill='rgba(154,154,154,0.10)' font-size='14' font-family='Arial, sans-serif'%3EPandec%20Digital%3C/text%3E%3Ctext x='0' y='140' fill='rgba(154,154,154,0.10)' font-size='14' font-family='Arial, sans-serif'%3EPandec%20Digital%3C/text%3E%3C/g%3E%3C/svg%3E");
    background-size: 260px 180px;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

body > * {
    position: relative;
    z-index: 2;
}