@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

/* Base Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
    background-color: #fafaf9;
    color: #1c1917;
    overflow-x: hidden;
}

/* Reset Navigation List Styling */
nav a::before,
nav a::after {
    content: none !important;
}

nav a {
    list-style: none !important;
    text-decoration: none !important;
}

nav div a::marker {
    display: none !important;
}

nav * {
    list-style-type: none !important;
}

/* Typography */
h1,
h2,
h3,
h4,
.serif {
    font-family: 'Playfair Display', serif;
}

/* Animations */
@keyframes openApp {
    0% {
        opacity: 0;
        transform: scale(0.92);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

.iphone-reveal {
    animation: openApp 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn-primary {
    background-color: #1c1917;
    color: white;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #44403c;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #1c1917;
    color: #1c1917;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: #1c1917;
    color: white;
}

/* Social Icons */
.hover-insta:hover {
    color: #E1306C;
}

.hover-youtube:hover {
    color: #FF0000;
}

.hover-tiktok:hover {
    color: #000000;
    text-shadow: 2px 2px 0px #ff0050;
}

/* Hero Section */
.hero-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
}

.hero-split-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/hero-pink.jpeg');
    background-size: cover;
    background-position: center right;
    z-index: 1;
    will-change: transform;
}

.hero-split-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('../images/hero-cameras.jpeg');
    background-size: cover;
    background-position: center top;
    z-index: 1;
    will-change: transform;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-split-left,
    .hero-split-right {
        width: 100%;
        height: 100%;
        position: absolute;
        opacity: 0.5;
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.video-wrapper {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
