﻿@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #e8e4df;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.2s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Typography Hero */
.typo-hero {
    padding: 2rem 4rem 4rem;
}

.hero-line {
    overflow: hidden;
}

.hero-line span {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -5px;
    text-transform: uppercase;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 3px #1a1a1a;
    opacity: 0;
    animation: slideRight 0.8s ease 0.3s forwards;
}

.filled-text {
    color: #1a1a1a;
    opacity: 0;
    animation: slideRight 0.8s ease 0.4s forwards;
}

.hl-2 .filled-text {
    animation-delay: 0.5s;
}

.hl-3 .filled-text {
    animation-delay: 0.6s;
}

.accent-text {
    color: #c9553d;
    font-style: italic;
    opacity: 0;
    animation: slideRight 0.8s ease 0.7s forwards;
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-80px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-subline {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ccc;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.sub-left p {
    max-width: 400px;
    color: #777;
    line-height: 1.6;
}

.sub-right {
    display: flex;
    gap: 2rem;
    text-align: right;
}

.sub-right span {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services */
.services-section {
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    transition: padding-left 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, padding-left 0.4s ease;
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item:hover {
    padding-left: 2rem;
}

.service-number {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
    min-width: 30px;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    transition: color 0.3s;
}

.service-item:hover .service-text h2 {
    color: #c9553d;
}

.service-text p {
    color: #999;
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

.service-arrow {
    font-size: 2rem;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.3s;
}

.service-item:hover .service-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* Marquee Strip */
.marquee-strip {
    padding: 3rem 0;
    overflow: hidden;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin: 2rem 0;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #bbb;
    padding-right: 2rem;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* About Section */
.about-section {
    padding: 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    position: relative;
}

.big-quote {
    font-family: 'Outfit', sans-serif;
    font-size: 15rem;
    line-height: 0.5;
    color: #ddd;
    position: absolute;
    top: -2rem;
    left: -2rem;
}

.about-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.about-content em {
    color: #c9553d;
    font-style: italic;
}

.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-col h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #c9553d;
}

.about-col p {
    color: #777;
    line-height: 1.7;
}

/* Footer */
.footer {
    padding: 6rem 4rem 3rem;
    text-align: center;
}

.footer-big {
    font-family: 'Outfit', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    letter-spacing: -4px;
    cursor: pointer;
    transition: color 0.4s;
    line-height: 1;
    margin-bottom: 2rem;
}

.footer-big:hover {
    color: #c9553d;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #ccc;
}

.footer-info a {
    text-decoration: none;
    color: #888;
    transition: color 0.3s;
}

.footer-info a:hover {
    color: #1a1a1a;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-line span {
        font-size: 5rem;
        letter-spacing: -2px;
    }
    .typo-hero, .navbar {
        padding: 1.5rem;
    }
    .hero-subline {
        flex-direction: column;
        gap: 1.5rem;
    }
    .services-section {
        padding: 2rem 1.5rem;
    }
    .service-text h2 {
        font-size: 2rem;
    }
    .footer-big {
        font-size: 3.5rem;
    }
    .about-content h2 {
        font-size: 2rem;
    }
    .about-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-section {
        padding: 4rem 1.5rem;
    }
    .footer {
        padding: 4rem 1.5rem 2rem;
    }
    .footer-info {
        flex-direction: column;
        gap: 1rem;
    }
}



/* 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;
}