/* Reset */
/* Logo Styling Realignment */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #ffffff;
    color: #ffd8d5;
}

/* 1. Cinematic Full-Bleed Hero */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* Simulated high-quality background studio image swap */
    background: linear-gradient(rgba(11, 15, 25, 0.65), rgba(11, 15, 25, 0.95)), 
                url('images/TT\ Sounds\ Logo_copy_page-0001_edited.jpg') no-repeat center center;
    background-size: contain;
    padding: 0 24px;
}

/* Navbar Style Matching MIDI layout */
.navbar {
    width: 100%;
    max-width: 1400px;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
}
.nav-linksleft a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 24px;
    transition: color 0.2s;
}
.nav-linksleft a:hover, .nav-linksleft a.active {
    color: #e68235; /* orange accent */
}

/* Center Logo styling */
.navbar-center .logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-icon {
    background-color: #e69035;
    color: #19160b;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}
.nav-icons-right {
    display: flex;
    gap: 20px;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Center Content */
.hero-center-content {
    text-align: center;
    max-width: 750px;
    margin: auto 0;
    z-index: 5;
}
.hero-tagline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #94a3b8;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.hero-center-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffffbe;
    margin-bottom: 20px;
}
@media (min-width: 768px) { .hero-center-content h1 { font-size: 4.5rem; } }

.hero-description {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
}
.btn-pill {
    display: inline-block;
    background-color: #e67f35; /* Sharp MIDI Lime Green */
    color: #0b0f19;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 16px 40px;
    border-radius: 50px;
    transition: transform 0.2s, background-color 0.2s;
}
.btn-pill:hover {
    transform: scale(1.03);
    background-color: #f29a64;
}

/* Bottom Award Badges layout bar */
.hero-badges {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-around;
    padding-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    z-index: 5;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.wreath {
    font-size: 1.5rem;
}
.badge-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}
.badge-sub {
    font-size: 0.7rem;
    color: #64748b;
}

/* 2. Content Blocks styling */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}
.section-heading h2 { font-size: 2rem; font-weight: 800; color: black; }
.heading-underline {
    width: 50px;
    height: 3px;
    background-color: #e6ab35;
    margin: 15px auto 0 auto;
    border-radius: 10px;
}

/* Grid Layout */
.equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 100px;
}
@media (min-width: 640px) { .equipment-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
    background: #262711;
    border-radius: 16px;
    border: 1px solid #1f2937;
    overflow: hidden;
    transition: transform 0.2s;
}


.card-title {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #1f2937;
}
.card-title h3 { font-size: 1rem; font-weight: 600; color: #fff; }

/* Centered Form Section */
.booking-section {
    display: flex;
    justify-content: center;
}
.form-card {
    background: #272011;
    border: 1px solid #37331f;
    padding: 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 700px;
}
.form-card h3 { font-size: 1.5rem; font-weight: 700; color: #ffffff; text-align: center; margin-bottom: 6px; }
.form-subtitle { font-size: 0.85rem; color: #ffffff; text-align: center; margin-bottom: 30px; }

form { display: flex; flex-direction: column; gap: 18px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

form input, form select {
    width: 100%;
    padding: 14px 20px;
    background-color: #19150b;
    border: 1px solid #372a1f;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #ffffff;
    outline: none;
}
form input:focus, form select:focus {
    border-color: #e6d735;
}
.date-group { display: flex; flex-direction: column; gap: 6px; }
.date-group label { font-size: 11px; font-weight: 700; color: #64748b; text-transform: uppercase; margin-left: 4px; }

#submit-btn {
    background-color: #e67935;
    color: #0b0f19;
    border: none;
    padding: 15px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}
#submit-btn:hover { background-color: #f2ce64; }

/* Success Box */
.success-box {
    background-color: #064e3b;
    border: 1px solid #065f46;
    color: #a7f3d0;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}
.hidden { display: none; }

footer {
    background-color: #120a03;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #272211;
}
/* Services Section Styles */
.services-section {
    padding: 60px 0;
    margin-bottom: 80px;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .services-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-box {
    background: linear-gradient(145deg, #111827, #1f2937);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    border-color: rgba(163, 230, 53, 0.2); /* Subtle lime green border glow */
    box-shadow: 0 10px 30px -15px rgba(163, 230, 53, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.service-box h3 {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-box p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    font-weight: 400;
}

/* Ticker Gallery Wrapper */
.ticker-gallery-section {
    padding: 40px 0 60px 0;
    width: 100%;
    overflow: hidden;
}

/* Outer viewport mask that hides scrolling overflow */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

/* The actual moving strip containing the items */
.ticker-track {
    display: flex;
    width: max-content;
    animation: slideLeft 25s linear infinite; /* Control speed by changing 25s */
}

/* Pause animation when client hovers over an image */
.ticker-track:hover {
    animation-play-state: paused;
}

/* Individual Picture Containers (Small & Compact) */
.ticker-item {
    padding: 0 15px; /* Spaces the pictures out */
}

.ticker-item img {
    width: 260px;       /* Set image width to make them small */
    height: 180px;      /* Set uniform height */
    object-fit: cover;  /* Keeps aspect ratio clean without distortion */
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Subtle interactive scale-up on hover */
.ticker-item img:hover {
    transform: scale(1.04);
    border-color: #a3e635; /* Lime theme accent highlight */
}

/* --- Infinite Right-to-Left Sliding Keyframes --- */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Moves exactly halfway down the duplicate sequence */
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .ticker-item img {
        width: 180px;
        height: 130px;
    }
}
/* Container alignment */
.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Image behavior constraints */
.brand-logo {
    height: 42px;         /* Locks the vertical height to match navbar padding */
    width: auto;          /* Scaled automatically to keep proper aspect ratios */
    display: block;
    object-fit: contain;  /* Safeguards against graphic stretching or squeezing */
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)); /* Lift from background */
}

