/* =====================================================
   OMATIDIO MEDIA - Website Styles
   Brand Colors:
   - Coral Pink: #F2666C
   - Mint/Aqua: #7EDCD5
   - Yellow: #F5E6A3
   - Dark Teal: #1a3a4a
   ===================================================== */

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

:root {
    --coral: #F2666C;
    --mint: #7EDCD5;
    --yellow: #F5E6A3;
    --dark-teal: #1a3a4a;
    --darker: #0d1f28;
    --white: #ffffff;
    --gray: #a0a0a0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--darker);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(13, 31, 40, 0.95), rgba(13, 31, 40, 0));
    padding: 1rem 0;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

/* Hero Section with Carousel */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 31, 40, 0.3) 0%,
        rgba(13, 31, 40, 0.1) 40%,
        rgba(13, 31, 40, 0.4) 70%,
        rgba(13, 31, 40, 0.95) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8rem;
}

.tagline {
    font-family: 'Pacifico', cursive;
    font-size: clamp(1.5rem, 4vw, 3rem);
    text-align: center;
    color: var(--mint);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    padding: 0 2rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--darker);
    position: relative;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--mint);
}

.about .lead {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Values */
.values {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.value {
    text-align: center;
}

.value-icon {
    display: block;
    font-size: 1.5rem;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.value h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--yellow);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* Hexagon Accent */
.hexagon-accent {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--coral), transparent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.1;
}

/* Posters Section */
.posters {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--darker), var(--dark-teal));
}

.posters h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--mint);
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.poster-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 2/3;
}

.poster-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.poster-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Poster placeholder with title overlay */
.poster-placeholder {
    position: relative;
}

.poster-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.poster-title {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--yellow);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    z-index: 2;
    white-space: nowrap;
}

.poster-cougar img {
    object-position: center;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--dark-teal);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(245, 230, 163, 0.03) 10px,
        rgba(245, 230, 163, 0.03) 20px
    );
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--mint);
}

.contact > .container > p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mint);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--coral);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: #e05560;
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--darker);
    text-align: center;
}

.footer-logo {
    width: 50px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .logo img {
        height: 40px;
    }

    .hero-overlay {
        padding-bottom: 5rem;
    }

    .about {
        padding: 5rem 0;
    }

    .values {
        gap: 2rem;
    }

    .posters {
        padding: 4rem 0;
    }

    .poster-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    .poster-title {
        font-size: 1rem;
    }

    .contact {
        padding: 5rem 0;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .about h2,
    .posters h2,
    .contact h2 {
        font-size: 2rem;
    }

    .about .lead {
        font-size: 1.1rem;
    }

    .values {
        flex-direction: column;
        gap: 1.5rem;
    }

    .poster-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .poster-title {
        font-size: 0.8rem;
    }

    .hexagon-accent {
        display: none;
    }
}

/* Smooth loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content,
.poster-grid,
.contact-form {
    animation: fadeIn 0.8s ease-out;
}
