﻿@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #f5f0eb;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(245, 240, 235, 0.9);
    backdrop-filter: blur(10px);
    animation: slideDown 0.7s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.logo {
    font-size: 2rem;
    font-weight: 700;
}

.logo span {
    color: #c9553d;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9553d;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
}

/* Split Hero */
.split-hero {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.split-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.split-content {
    max-width: 550px;
}

.tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9553d;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.split-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.split-content h1 em {
    font-style: italic;
    color: #c9553d;
}

.split-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-secondary:hover {
    color: #c9553d;
}

.stats-row {
    display: flex;
    gap: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.1s forwards;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2rem;
    font-weight: 700;
}

.stat-text {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Split Right */
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.image-stack {
    position: relative;
    width: 400px;
    height: 500px;
}

.img-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.img-placeholder {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.img-1 {
    width: 320px;
    height: 400px;
    top: 50px;
    left: 0;
    z-index: 3;
    opacity: 0;
    animation: cardSlide1 0.8s ease 0.6s forwards;
}

.img-1 .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c9553d, #e07a5f);
}

@keyframes cardSlide1 {
    from { opacity: 0; transform: translateX(-50px) rotate(-5deg); }
    to { opacity: 1; transform: translateX(0) rotate(-3deg); }
}

.img-2 {
    width: 280px;
    height: 350px;
    top: 20px;
    left: 100px;
    z-index: 2;
    opacity: 0;
    animation: cardSlide2 0.8s ease 0.8s forwards;
}

.img-2 .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d3436, #636e72);
}

@keyframes cardSlide2 {
    from { opacity: 0; transform: translateX(50px) rotate(5deg); }
    to { opacity: 1; transform: translateX(0) rotate(3deg); }
}

.img-3 {
    width: 200px;
    height: 250px;
    bottom: 0;
    right: 0;
    z-index: 4;
    opacity: 0;
    animation: cardSlide3 0.8s ease 1s forwards;
}

.img-3 .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0c3547, #1a6985);
}

@keyframes cardSlide3 {
    from { opacity: 0; transform: translateY(50px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.image-stack:hover .img-1 { transform: translateX(-20px) rotate(-6deg); }
.image-stack:hover .img-2 { transform: translateX(20px) rotate(6deg); }
.image-stack:hover .img-3 { transform: translateY(-10px) scale(1.05); }

/* Marquee */
.marquee-section {
    padding: 2rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.marquee {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-content span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #999;
}

.marquee-content .dot {
    font-size: 0.5rem;
    color: #c9553d;
}

/* Responsive */
@media (max-width: 968px) {
    .split-hero {
        flex-direction: column;
    }
    .split-left {
        padding: 2rem;
    }
    .split-content h1 {
        font-size: 2.8rem;
    }
    .split-right {
        padding: 2rem;
    }
    .image-stack {
        width: 300px;
        height: 400px;
    }
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .navbar {
        padding: 1rem 1.5rem;
    }
}



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