/* RESET & BASE STYLES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

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

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

/* NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.5px;
}

.logo a {
    text-decoration: none;
    color: #111111;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #444444;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0066FF;
}

.btn-nav {
    padding: 8px 18px;
    background-color: #0066FF;
    color: #ffffff !important;
    border-radius: 6px;
}

/* HERO SECTION */
.hero {
    padding: 100px 20px;
    text-align: center;
    background-color: #fafafa;
    border-bottom: 1px solid #eaeaea;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: #e6f0ff;
    color: #0066FF;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.25rem;
    color: #555555;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: opacity 0.2s;
}

.btn.primary {
    background-color: #0066FF;
    color: #ffffff;
}

.btn.secondary {
    background-color: #e5e7eb;
    color: #1a1a1a;
}

.btn:hover {
    opacity: 0.9;
}

/* ABOUT ME (2 COLUMNS & ARCHED IMAGE) */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.arched-img {
    width: 100%;
    max-width: 380px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0066FF;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.bio-intro {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.credentials {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #dddddd;
    font-size: 0.95rem;
    color: #444;
}

/* SERVICES */
.services-section {
    padding: 80px 0;
}

.center {
    text-align: center;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #111;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
}

/* PORTFOLIO & GALLERIES */
.portfolio-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.project-block {
    margin-top: 40px;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-tag {
    font-size: 0.85rem;
    color: #666;
    background-color: #f1f5f9;
    padding: 4px 12px;
    border-radius: 4px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.2s;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* VIDEOGRAPHY SECTION */
.videography-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.video-placeholder {
    width: 100%;
    height: 340px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-content {
    text-align: center;
    color: #ffffff;
}

.play-icon {
    display: block;
    margin-bottom: 15px;
    opacity: 0.7;
}

.play-icon svg {
    width: 48px;
    height: 48px;
    color: #fff;
}

.placeholder-content p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.placeholder-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

.video-tag {
    font-size: 0.85rem;
    color: #666;
    background-color: #f1f5f9;
    padding: 4px 12px;
    border-radius: 4px;
}

/* CASE STUDY SECTION */
.case-study-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.case-study-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.case-study-card h2 {
    font-size: 1.8rem;
    margin: 15px 0 30px 0;
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cs-col h4 {
    font-size: 1.1rem;
    color: #0066FF;
    margin-bottom: 12px;
}

.cs-col ul {
    padding-left: 20px;
}

.cs-col li {
    margin-bottom: 8px;
}

/* Case Study Logo */
.cs-logo {
    text-align: center;
    margin: 20px 0 30px;
}

.cs-logo img {
    max-width: 200px;
    height: auto;
}

.logo-caption {
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

/* Strategy Grid */
.cs-strategy {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.cs-strategy h4 {
    font-size: 1.1rem;
    color: #0066FF;
    margin-bottom: 15px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.strategy-item {
    padding: 12px 16px;
    background: #f8f9fa;
    border-left: 3px solid #0066FF;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #444;
}

/* FOOTER */
.footer {
    padding: 60px 0;
    background-color: #111111;
    color: #ffffff;
    text-align: center;
}

.footer h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer p {
    color: #aaa;
}

.contact-info {
    margin: 25px 0;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 30px auto 0;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ccc;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066FF;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.submit-btn {
    display: block;
    width: 100%;
    cursor: pointer;
    font-size: 1rem;
    padding: 14px 28px;
    border: none;
    margin-top: 8px;
    text-align: center;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 30px 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.social-link:hover {
    opacity: 0.85;
}

.social-link.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: #fff;
}

.social-link.x-twitter {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.copyright {
    font-size: 0.85rem;
    color: #666 !important;
    margin-top: 30px;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 4px;
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 3001;
    line-height: 1;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 0.6;
}

/* Make gallery images clickable */
.gallery-grid img {
    cursor: pointer;
}

/* HAMBURGER MENU BUTTON */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU DRAWER */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 1500;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-links a {
    display: block;
    padding: 14px 16px;
    color: #111;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.mobile-nav-links a:hover {
    background: #f0f4ff;
    color: #0066FF;
}

.mobile-nav-links .btn-nav {
    background: #0066FF;
    color: #fff !important;
    text-align: center;
    margin-top: 8px;
}

/* MOBILE OVERLAY */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1400;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .navbar {
        padding: 15px 20px;
        flex-direction: row;
        justify-content: space-between;
    }

    .navbar nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* About */
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image-wrapper {
        order: -1;
    }

    .about-text {
        text-align: center;
    }

    .arched-img {
        max-width: 260px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    /* Photography Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid img {
        height: 220px;
    }

    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Videography */
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-placeholder {
        height: 240px;
    }

    /* Case Study */
    .case-study-card {
        padding: 24px;
    }

    .case-study-card h2 {
        font-size: 1.4rem;
    }

    .cs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .cs-logo img {
        max-width: 150px;
    }

    /* Contact Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        margin: 20px 0;
    }

    /* Social Links */
    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Footer */
    .footer {
        padding: 40px 0;
    }

    .footer h2 {
        font-size: 1.6rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

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

    .gallery-grid img {
        height: 260px;
    }

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