/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: #FFD700; /* Gold accent */
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    color: #ccc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    transition: background-color 0.3s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    gap: 2rem;
}

.logo img {
    height: 150px;
}

.header-tagline {
    display: none;
}

.tagline-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    white-space: nowrap;
}

nav ul {
    list-style: none;
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #FFD700;
}

/* Hamburger Menu */
.hamburger {
    display: none; /* Hidden by default */
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    z-index: 1001;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
}

    .nav-menu.active {
        transform: translateX(0) !important;
        background-color: rgba(0, 0, 0, 0.98) !important;
        color: white !important;
        display: flex !important;
        flex-direction: column !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

/* Hero Section */
#hero {
    height: 100vh; /* Full viewport height */
    min-height: 400px; /* Minimum readable height */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 1rem;
    animation: fadeInUp 2s ease-out;
}

.hero-content p {
    margin-bottom: 2rem;
    animation: fadeInUp 2.5s ease-out;
}

.btn {
    display: inline-block;
    background-color: #FFD700;
    color: #000;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s;
    animation: fadeInUp 3s ease-out;
}

.btn:hover {
    background-color: #FFA500;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* No cropping since aspect ratios match */
    animation: fadeIn 2s ease-out;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-cta {
    position: absolute;
    bottom: 7rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: none; /* Hidden for now */
}

.image-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 4;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.image-controls:hover {
    opacity: 1;
}

.image-nav {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #FFD700;
    color: #FFD700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.image-nav:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.image-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #FFD700;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 215, 0, 0.8);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

/* Sections */
section {
    padding: 12rem 0;
}

/* Account for fixed header */
section:first-of-type {
    padding-top: 200px; /* Extra space for fixed header */
}

@media (max-width: 768px) {
    section:first-of-type {
        padding-top: 200px; /* Adjusted for larger header */
    }
}

section:nth-child(even) {
    background-color: #111;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service {
    text-align: center;
    padding: 2rem;
    background-color: #222;
    border-radius: 10px;
    transition: transform 0.3s;
}

.service:hover {
    transform: translateY(-10px);
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.film {
    text-align: center;
    background-color: #222;
    padding: 1rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.film:hover {
    transform: translateY(-10px);
}

.film img {
    width: 300px;
    height: 450px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Why Choose Us */
.reasons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.reason {
    text-align: center;
    max-width: 300px;
    margin: 1rem;
}

/* Contact */
.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    margin-right: 2rem;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background-color: #222;
    color: #fff;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #111;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    nav {
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100px; /* Start below header */
        left: 0;
        width: 100%;
        height: calc(100vh - 100px);
        background-color: rgba(0, 0, 0, 0.98); /* More opaque */
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 10000; /* Higher z-index */
        opacity: 1;
        visibility: visible;
        border-top: 1px solid #FFD700; /* Visual separator */
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu li a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        display: block;
        transition: color 0.3s;
    }

    .nav-menu li a:hover {
        color: #FFD700;
        background-color: rgba(255, 215, 0, 0.1);
        border-radius: 5px;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }



    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .film img {
        width: 250px;
        height: 375px;
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        margin-right: 0;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 400px;
        text-align: center;
    }

    .contact-form {
        width: 100%;
        max-width: 400px;
        align-items: center;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    nav {
        padding: 0.5rem 1rem;
    }

    .film img {
        width: 200px;
        height: 300px;
    }
}
