/* Brand Owl Promotions - Main Stylesheet */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #a855f7;
    --secondary-color: #ec4899;
    --background: #0a0a0a;
    --text-primary: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-color: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    height: 80px;
    transition: transform 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.5rem;
}

.logo-accent {
    color: var(--primary-color);
}

.logo-sub {
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.nav-links {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

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

.nav-links a.active {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.625rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #9333ea;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn:hover {
    opacity: 0.8;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 999;
    overflow-y: auto;
    padding: 2rem 1.5rem;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu .btn-primary {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.75rem;
    font-size: 1.25rem;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg-BDmhcI-g.png') center/cover;
    text-align: center;
    padding: 2rem 1rem;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 6rem);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.hero .accent {
    color: var(--primary-color);
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.btn-secondary {
    border: 2px solid white;
    background: transparent;
    color: white;
    padding: 1rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.125rem;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

/* Sections */
section {
    padding: 4rem 1rem;
}

.section-title {
    font-size: clamp(2rem, 6vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text-muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: 1fr;
}

/* Service Cards */
.service-card {
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary-color);
}

.service-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.service-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: auto;
    flex-grow: 1;
    padding-bottom: 1.5rem;
}

.service-card a {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    align-self: flex-start;
}

.service-card a:hover {
    text-decoration: underline;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 1rem;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.portfolio-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
}

/* Service Details */
.service-detail {
    padding: 5rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-detail:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.service-text {
    text-align: left;
}

.service-image {
    text-align: center;
}

.service-detail img {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s;
    display: inline-block;
}

.service-detail img:hover {
    filter: grayscale(0%);
}

.service-detail h2 {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .service-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
    
    .service-content-reverse .service-text {
        order: 2;
    }
    
    .service-content-reverse .service-image {
        order: 1;
    }
    
    .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact Info */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
}

.contact-card h2 {
    font-size: 1.875rem;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    background: rgba(168, 85, 247, 0.2);
    padding: 0.75rem;
    border-radius: 50%;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info h3 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-info p {
    color: var(--text-muted);
}

/* Map */
.map-container {
    height: 400px;
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(1) hue-rotate(180deg);
    transition: filter 0.5s;
}

.map-container:hover iframe {
    filter: grayscale(0%) invert(1) hue-rotate(180deg);
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

select.form-control {
    cursor: pointer;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.quote-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 1rem;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 2.5rem;
}

.btn-white {
    background: white;
    color: black;
    padding: 1.5rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background: #000000;
    border-top: 1px solid var(--border-color);
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-brand-main {
    font-size: 1.25rem;
}

.footer-brand-sub {
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.footer-section h3 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 2rem;
}

.about-card h2 {
    font-size: 1.875rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-card blockquote {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.accent-bar {
    height: 4px;
    width: 80px;
    background: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-color);
}

.feature-number {
    width: 64px;
    height: 64px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-card h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: 100%;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-container {
        height: 100%;
        min-height: 500px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    section {
        padding: 6rem 1rem;
    }
    
    .logo-main {
        font-size: 1.75rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}
