/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;700&family=Syne:wght@400;700;800&display=swap');

:root {
    /* Brand Colors - PUNCHY VERSIONS */
    --primary-color: #0038ff;
    /* Electric Blue */
    --accent-color: #ffe600;
    /* Acid Yellow */
    --text-color: #000000;
    --bg-color: #f3f3f3;
    /* Off-white concrete feel */
    --white: #ffffff;

    /* Neo-Brutalist Settings */
    --border-thick: 3px solid #000;
    --border-thin: 2px solid #000;
    --shadow-hard: 6px 6px 0px #000;
    --shadow-hover: 2px 2px 0px #000;
    --radius-l: 20px;
    --radius-s: 8px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* For sticky header offset */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
.btn {
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
}

/* MARQUEE */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--accent-color);
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
    padding: 15px 0;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--white);
    border: var(--border-thick);
    box-shadow: var(--shadow-hard);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    /* Prevent text wrapping */
    vertical-align: middle;
}

.btn:hover {
    transform: translate(4px, 4px);
    box-shadow: none;
    background: #0026b3;
}

.btn-accent {
    background: var(--accent-color);
    color: var(--text-color);
}

.btn-accent:hover {
    background: #e6cf00;
}

/* HEADER */
header {
    padding: 15px 20px;
    background: var(--bg-color);
    border-bottom: var(--border-thick);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Prevent squashing */
}

.logo img {
    height: auto;
    max-height: 80px;
    /* larger max height */
    width: auto;
    object-fit: contain;
    /* Removed drop-shadow to fix 'double logo' issue */
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
    list-style: none;
    /* Remove bullet points */
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 50px;
    transition: all 0.2s;
}

.nav-links a:not(.btn):hover {
    border: var(--border-thick);
    background: var(--white);
    box-shadow: var(--shadow-hard);
}

.mobile-menu-btn {
    display: none;
    /* Desktop default */
    font-size: 1.5rem;
    cursor: pointer;
    border: var(--border-thick);
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 4px 4px 0px #000;
    transition: transform 0.1s;
}

.mobile-menu-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000;
}

/* HERO SECTION */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    /* Stack vertically: Content Top ... Buttons Bottom */
    justify-content: space-between;
    /* Space out content and buttons */
    align-items: flex-start;
    /* Align everything to LEFT */
    position: relative;
    padding: 100px 40px 50px 40px;
    /* More top padding */

    /* Stylized Background */
    background-image:
        radial-gradient(var(--primary-color) 1px, transparent 1px),
        radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}

.hero-box {
    /* REMOVED FRAME STYLES per instruction */
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    max-width: 900px;
    text-align: left;
    /* Align text left */
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 6rem;
    /* Massive */
    line-height: 0.9;
    margin-bottom: 20px;
    color: var(--text-color);
    letter-spacing: -3px;
    margin-top: 0;
}

.hero p {
    font-size: 1.5rem;
    margin: 20px 0 0 0;
    max-width: 600px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    /* Center buttons? Or Left? Assuming Center for balance at bottom */
    width: 100%;
    /* Take full width to allow centering */
    gap: 20px;
    z-index: 2;
    margin-bottom: 20px;

    /* Animation */
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.5s;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SECTIONS */
.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin: 80px 0 50px;
    -webkit-text-stroke: 1px black;
}

/* SERVICES */
.services {
    padding: 50px 20px;
    background: var(--accent-color);
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
}

.services .container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: var(--border-thick);
    border-radius: var(--radius-l);
    padding: 30px;
    box-shadow: var(--shadow-hard);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0px #000;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* PORTFOLIO */
.portfolio {
    padding: 80px 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns on desktop, will adjust on mobile */
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    border: var(--border-thick);
    padding: 10px 10px 50px 10px;
    /* Polaroid bottom padding */
    background: var(--white);
    transform: rotate(-2deg);
    transition: all 0.3s;
    box-shadow: var(--shadow-hard);
    cursor: pointer;
}

.portfolio-item:nth-child(even) {
    transform: rotate(2deg);
}

.portfolio-item:hover {
    transform: rotate(0) scale(1.05);
    z-index: 10;
}

.portfolio-item img {
    border: var(--border-thin);
    filter: grayscale(100%);
    transition: filter 0.3s;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.portfolio-item:hover img {
    filter: grayscale(0%);
}

.portfolio-overlay {
    text-align: center;
    padding-top: 15px;
}

.portfolio-overlay h4 {
    font-size: 1.2rem;
    color: var(--text-color);
}

/* BOOKING */
.booking {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-wrapper {
    background: var(--white);
    border: var(--border-thick);
    box-shadow: 12px 12px 0px #000;
    border-radius: var(--radius-l);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.booking-info {
    flex: 1;
    min-width: 300px;
    background: var(--primary-color);
    padding: 50px;
    color: var(--white);
    border-right: var(--border-thick);
}

.booking-info h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--accent-color);
    -webkit-text-stroke: 1px black;
}

.booking-form-container {
    flex: 1.5;
    padding: 50px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: var(--border-thick);
    background: #f0f0f0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    border-radius: var(--radius-s);
}

.form-control:focus {
    outline: none;
    background: var(--accent-color);
    box-shadow: 4px 4px 0px #000;
}

/* FOOTER */
footer {
    background: #000;
    color: var(--white);
    padding: 80px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: var(--border-thick);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
}

.footer-block {
    flex: 1;
    min-width: 300px;
}

.footer-block h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: #000;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.2s;
    border: 2px solid #000;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 4px 4px 0 #fff;
    /* White shadow on dark bg */
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 80px;
        /* Below header */
        left: 0;
        width: 100%;
        background: var(--accent-color);
        flex-direction: column;
        padding: 40px 20px;
        border-bottom: var(--border-thick);
        box-shadow: var(--shadow-hard);
        transform: translateY(-150%);
        transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        display: block;
        /* Full width clickable */
        font-size: 1.5rem;
        width: 100%;
        text-align: center;
        border: var(--border-thick);
        background: var(--white);
        box-shadow: var(--shadow-hard);
        margin-bottom: 15px;
    }

    .nav-links a.btn {
        margin-top: 10px;
        background: var(--primary-color);
        color: var(--white);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }

    /* On mobile, align center usually looks better, but asked for Left */
    .hero {
        align-items: center;
        /* Center on mobile to avoid weird gaps */
        text-align: center;
        padding: 50px 20px;
    }

    .hero-box {
        text-align: center;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on tablet */
    }

    .services-grid {
        grid-template-columns: 1fr;
        /* Stack services */
    }

    .booking-wrapper {
        flex-direction: column;
    }

    .booking-info {
        border-right: none;
        border-bottom: var(--border-thick);
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        /* 1 col on mobile */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }

    .section-title {
        font-size: 2.2rem;
    }
}