/* Speakeasy Productions - Base CSS Framework */
/* Black and Gold Theme */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #DAA520; /* Gold text */
    background-color: #000000; /* Black background */
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #DAA520; /* Gold headings */
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #FFFFFF; /* White text for paragraphs */
}

a {
    color: #DAA520; /* Gold links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFF8DC; /* Light gold on hover */
    text-decoration: underline;
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.main-content {
    min-height: calc(100vh - 200px);
    padding-top: 2rem;
}

.section {
    padding: 4rem 0;
}

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

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

.text-right {
    text-align: right;
}

/* Logo Styles */
.logo {
    max-width: 300px;
    height: auto;
    display: block;
}

.logo-container {
    text-align: center;
    margin: 2rem 0;
}

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

/* Header and Navigation Styles */
.header {
    background-color: rgba(0, 0, 0, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #DAA520;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo .logo {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #DAA520;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
}

.nav-link:hover {
    background-color: rgba(255, 215, 0, 0.1);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #DAA520;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 6rem 0;
    text-align: center;
    border-bottom: 3px solid #DAA520;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid #DAA520;
    background-color: transparent;
    color: #DAA520;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn:hover {
    background-color: #DAA520;
    color: #000000;
    text-decoration: none;
}

.btn-primary {
    background-color: #DAA520;
    color: #000000;
}

.btn-primary:hover {
    background-color: transparent;
    color: #DAA520;
}

/* Card Styles */
.card {
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.2);
}

.card-title {
    color: #DAA520;
    margin-bottom: 1rem;
}

.card-text {
    color: #CCCCCC;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}

.col {
    flex: 1;
    padding: 0 0.5rem;
}

.col-1 { flex: 0 0 8.333333%; }
.col-2 { flex: 0 0 16.666667%; }
.col-3 { flex: 0 0 25%; }
.col-4 { flex: 0 0 33.333333%; }
.col-6 { flex: 0 0 50%; }
.col-8 { flex: 0 0 66.666667%; }
.col-9 { flex: 0 0 75%; }
.col-12 { flex: 0 0 100%; }

/* Footer Styles */
.footer {
    background-color: #0a0a0a;
    border-top: 2px solid #DAA520;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: left;
}

.footer-title {
    color: #DAA520;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: #DAA520;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.footer-description {
    color: #CCCCCC;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list-item {
    color: #CCCCCC;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.footer-list-item::before {
    content: "▶";
    color: #DAA520;
    position: absolute;
    left: 0;
    font-size: 0.75rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    margin-bottom: 0.75rem;
    color: #CCCCCC;
}

.contact-label {
    font-weight: bold;
    color: #DAA520;
    margin-right: 0.5rem;
}

.contact-link {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #DAA520;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 1rem;
    text-align: center;
}

.copyright {
    color: #888888;
    font-size: 0.875rem;
    margin: 0;
}

/* Utility Classes */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.text-gold { color: #DAA520; }
.text-white { color: #FFFFFF; }
.text-gray { color: #CCCCCC; }

.bg-black { background-color: #000000; }
.bg-dark { background-color: #1a1a1a; }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-top: 2px solid #DAA520;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .nav-link {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid #333333;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .row {
        flex-direction: column;
    }
    
    .col,
    .col-1, .col-2, .col-3, .col-4, 
    .col-6, .col-8, .col-9, .col-12 {
        flex: 0 0 100%;
        margin-bottom: 1rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .logo-header {
        max-width: 150px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .logo-header {
        max-width: 120px;
    }
    
    .card {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: white;
        color: black;
    }
    
    .nav, .footer {
        display: none;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}
/* Hom
epage Specific Styles */

/* Hero Section Enhancements */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-description {
    font-size: 1.125rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Introduction Section */
.intro-content {
    padding-right: 2rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #DAA520;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.125rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.intro-highlights {
    margin-top: 2rem;
}

.highlight-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 215, 0, 0.05);
    border-left: 3px solid #DAA520;
    border-radius: 4px;
}

.highlight-title {
    color: #DAA520;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: #CCCCCC;
    margin: 0;
    font-size: 0.95rem;
}

/* Logo Showcase */
.intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2rem;
}

.logo-showcase {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.logo-large {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Services Preview Section */
.services-preview {
    background-color: #0a0a0a;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.section-header {
    margin-bottom: 3rem;
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-features li {
    color: #CCCCCC;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    color: #DAA520;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-action {
    margin-top: auto;
    text-align: center;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
}

.feature-item {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    color: #DAA520;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-text {
    color: #CCCCCC;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-top: 2px solid #DAA520;
    padding: 4rem 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    color: #DAA520;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 200px;
        text-align: center;
    }
    
    .intro-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .intro-visual {
        padding-left: 0;
    }
    
    .logo-large {
        max-width: 280px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-item {
        margin-bottom: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .logo-large {
        max-width: 220px;
    }
    
    .service-icon,
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}/* S
ervices Page Specific Styles */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid #DAA520;
}

.services-hero-title {
    font-size: 2.5rem;
    color: #DAA520;
    margin-bottom: 1rem;
}

.services-hero-subtitle {
    font-size: 1.25rem;
    color: #CCCCCC;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Detail Sections */
.service-detail {
    padding: 5rem 0;
}

.service-detail.alternate {
    background-color: #0a0a0a;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.service-content {
    padding-right: 2rem;
}

.service-detail.alternate .service-content {
    padding-right: 0;
    padding-left: 2rem;
}

.service-header {
    margin-bottom: 2rem;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.service-title {
    font-size: 2.25rem;
    color: #DAA520;
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 1.125rem;
    color: #CCCCCC;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.service-description p {
    font-size: 1.125rem;
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Service Features */
.service-features-container {
    padding-left: 2rem;
}

.service-detail.alternate .service-features-container {
    padding-left: 0;
    padding-right: 2rem;
}

.features-title {
    font-size: 1.5rem;
    color: #DAA520;
    margin-bottom: 2rem;
    text-align: center;
}

.service-features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-box {
    background-color: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
}

.feature-box-title {
    color: #DAA520;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #CCCCCC;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: "▶";
    color: #DAA520;
    position: absolute;
    left: 0;
    font-size: 0.75rem;
}

/* Service Packages */
.service-packages {
    background-color: #0a0a0a;
    padding: 5rem 0;
}

.package-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.package-card.featured {
    border: 2px solid #DAA520;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #DAA520;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: bold;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-title {
    font-size: 1.5rem;
    color: #DAA520;
    margin-bottom: 0.5rem;
}

.package-subtitle {
    color: #CCCCCC;
    font-size: 1rem;
}

.package-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-list li {
    color: #CCCCCC;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-list li::before {
    content: "✓";
    color: #DAA520;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.package-ideal {
    border-top: 1px solid #333333;
    padding-top: 1rem;
}

.ideal-title {
    color: #DAA520;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.ideal-text {
    color: #CCCCCC;
    font-size: 0.9rem;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
}

.process-steps {
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #DAA520;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-title {
    color: #DAA520;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-description {
    color: #CCCCCC;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-top: 2px solid #DAA520;
    padding: 4rem 0;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-method {
    text-align: center;
}

.contact-method-title {
    color: #DAA520;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-method-link {
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-method-link:hover {
    color: #DAA520;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2rem;
    }
    
    .service-content,
    .service-features-container {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 2rem;
    }
    
    .service-detail.alternate .service-content,
    .service-detail.alternate .service-features-container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .service-title {
        font-size: 1.75rem;
    }
    
    .service-description p {
        font-size: 1rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 1.5rem;
    }
    
    .service-icon-large {
        font-size: 3rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .contact-method-link {
        font-size: 1rem;
    }
}