/* ========================================
   ANALOGSOUL — Analog Film Photography
   Dark, Moody, Minimal
   ======================================== */

:root {
    --color-bg: #0a0a0a;
    --color-bg-light: #141414;
    --color-bg-card: #1a1a1a;
    --color-text: #e8e8e8;
    --color-text-muted: #888888;
    --color-accent: #d4a574;
    --color-accent-hover: #e8b98a;
    --color-border: #2a2a2a;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    
    --transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2rem;
    color: var(--color-text);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

/* ========================================
   Navigation
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background: linear-gradient(to bottom, rgba(10,10,10,0.9), transparent);
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.nav-links a:hover {
    color: var(--color-text);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 1px;
    background: var(--color-text);
    transition: var(--transition);
}

/* ========================================
   Hero
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(
        to bottom,
        var(--color-bg) 0%,
        var(--color-bg-light) 100%
    );
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero-beach-sunset.jpg') center/cover;
    opacity: 0.15;
    filter: grayscale(30%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--color-text-muted), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ========================================
   Sections
   ======================================== */

.section {
    padding: 120px 0;
}

.section h2 {
    text-align: center;
}

/* ========================================
   About
   ======================================== */

.about {
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: grayscale(20%);
}

.about-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.about-location {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent) !important;
    margin-top: 2rem !important;
}

.about-equipment {
    display: flex;
    gap: 24px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.about-equipment span {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-text-muted);
}

/* ========================================
   Portfolio
   ======================================== */

.portfolio {
    background: var(--color-bg-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(20%);
}

.portfolio-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.portfolio-item.landscape img {
    aspect-ratio: 4/3;
}

.portfolio-item.square img {
    aspect-ratio: 1/1;
}

/* ========================================
   Travel & Documentary
   ======================================== */

.travel-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.travel-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.travel-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(0.7);
}

.travel-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 24px;
}

.travel-hero-content h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.travel-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
}

.travel-gallery-section {
    background: var(--color-bg);
}

.travel-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 2rem;
}

.travel-item {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.travel-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.travel-item img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: contain;
    display: block;
    background: var(--color-bg-card);
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(15%);
}

.travel-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* ========================================
   Packages
   ======================================== */

.packages {
    background: var(--color-bg);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.package {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 40px 32px;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
}

.package:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.package.featured {
    border-color: var(--color-accent);
    position: relative;
}

.package.featured::before {
    content: 'Popular';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
}

.package h3 {
    margin-bottom: 1rem;
}

.package-price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.package-ideal {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.package ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package li {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.package li:last-child {
    border-bottom: none;
}

.package-cta {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid var(--color-text);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all var(--transition);
}

.package-cta:hover {
    background: var(--color-text);
    color: var(--color-bg);
}

.packages-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ========================================
   Process
   ======================================== */

.process {
    background: var(--color-bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
}

.step-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.process-step h4 {
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ========================================
   Contact
   ======================================== */

.contact {
    background: var(--color-bg);
    text-align: center;
}

.contact-intro {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.contact .package-cta {
    margin-bottom: 2.5rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 2rem;
}

.contact-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.contact-value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-accent);
}

.contact-location {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 2rem;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 48px 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .travel-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .travel-hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 20px 24px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-bg);
        padding: 24px;
        gap: 24px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-content h2 {
        text-align: center;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    /* Hero Section - smaller on mobile */
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    /* Typography - more readable */
    h2 {
        font-size: 32px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Portfolio - single column */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Travel Gallery - single column on mobile */
    .travel-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .travel-hero-content h2 {
        font-size: 2rem;
    }
    
    /* Packages - better spacing */
    .package {
        padding: 32px 24px;
    }
    
    .package h3 {
        font-size: 24px;
    }
    
    .package ul {
        font-size: 15px;
    }
    
    .package-cta {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    /* Equipment badges */
    .about-equipment {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .about-equipment span {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    /* Process steps */
    .step-number {
        font-size: 32px;
    }
    
    .process-step h4 {
        font-size: 18px;
    }
    
    /* Contact - larger tap targets */
    .contact-link {
        padding: 20px;
    }
    
    .contact-value {
        font-size: 16px;
    }
}
