/* PARTY TIME PARTY RENTALS - MIAMI ENTERTAINMENT */
/* CSS Foundation by Business Directory Coordinator */
/* Professional Entertainment Design with Vibrant Party Appeal */

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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow-x: hidden;
}

/* ===== VIBRANT PARTY COLOR SCHEME ===== */
:root {
    /* Primary Party Colors */
    --party-primary: #ff6b35;        /* Energetic orange */
    --party-secondary: #ff8c42;      /* Warm orange */
    --party-accent: #ffa726;         /* Golden orange */
    --party-pop: #ff5722;            /* Deep orange */
    
    /* Professional Business Colors */
    --business-blue: #2563eb;        /* Trust blue */
    --business-navy: #1e3a8a;        /* Professional navy */
    --business-gray: #64748b;        /* Professional gray */
    
    /* Neutral Support Colors */
    --white: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #e2e8f0;
    --dark-gray: #475569;
    --black: #1a1a1a;
    
    /* Gradients */
    --party-gradient: linear-gradient(135deg, var(--party-primary) 0%, var(--party-accent) 100%);
    --business-gradient: linear-gradient(135deg, var(--party-primary) 0%, var(--party-pop) 100%);
    
    /* Shadows */
    --party-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    --business-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===== PROFESSIONAL TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--black);
}

h1 {
    font-size: 3.5rem;
    background: var(--party-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2.5rem;
    color: var(--business-navy);
}

h3 {
    font-size: 2rem;
    color: var(--party-primary);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

a {
    color: var(--party-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--party-secondary);
    transform: translateY(-2px);
}

/* ===== MODERN LAYOUT COMPONENTS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--party-accent) 0%, transparent 70%);
    opacity: 0.03;
    pointer-events: none;
}

/* ===== VIBRANT HERO SECTION ===== */
.hero {
    background: var(--party-gradient);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

.hero h1 {
    -webkit-text-fill-color: var(--white);
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    animation: slideInUp 1s ease-out 0.2s both;
}

/* ===== PARTY CTA BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--white);
    color: var(--party-primary);
    box-shadow: var(--party-shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: var(--business-gradient);
    color: var(--white);
    box-shadow: var(--business-shadow);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.25);
}

/* ===== PROFESSIONAL CARD LAYOUTS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--party-gradient);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--party-secondary);
}

.card h3 {
    margin-bottom: 1rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--party-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

/* ===== ENTERTAINMENT INDUSTRY SECTIONS ===== */
.services-showcase {
    background: var(--light-gray);
    position: relative;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-image {
    flex: 1;
    height: 300px;
    border-radius: 15px;
    background: var(--party-gradient);
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* ===== TESTIMONIALS & SOCIAL PROOF ===== */
.testimonials {
    background: var(--business-gradient);
    color: var(--white);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--party-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--business-navy);
}

.star-rating {
    color: var(--party-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* ===== CONTACT & BOOKING SECTIONS ===== */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--party-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

/* ===== FORM STYLING ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--business-navy);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--party-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* ===== GMB INTEGRATION STYLES ===== */
.gmb-business-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    border-left: 5px solid var(--party-primary);
    margin: 2rem 0;
}

.gmb-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gmb-logo {
    width: 60px;
    height: 60px;
    background: var(--party-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.gmb-info h4 {
    color: var(--business-navy);
    margin-bottom: 0.5rem;
}

.gmb-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--party-accent);
    font-weight: 600;
}

.gmb-details {
    margin-top: 1rem;
    color: var(--dark-gray);
}

/* ===== AUTHORITY LINKS STYLING ===== */
.authority-links {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.authority-links h4 {
    color: var(--business-navy);
    margin-bottom: 1rem;
}

.authority-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--party-primary);
    transition: color 0.3s ease;
}

.authority-link:hover {
    color: var(--party-secondary);
}

.authority-link::before {
    content: "🔗";
    font-size: 0.8rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--party-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--party-primary);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--business-navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--party-accent);
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    from {
        transform: translateY(0px) rotate(0deg);
    }
    to {
        transform: translateY(-20px) rotate(360deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }
    
    .nav-menu {
        display: none;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--party-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.d-flex {
    display: flex;
}

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

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

/* ===== PROFESSIONAL BUSINESS TRUST ELEMENTS ===== */
.trust-indicators {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    margin: 2rem 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    color: var(--business-navy);
}

.trust-badge-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--party-primary);
}

.trust-badge-text {
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
}

/* ===== MIAMI PARTY RENTAL SPECIFIC STYLES ===== */
.miami-vibes {
    background: linear-gradient(135deg, #ff6b35 0%, #4ecdc4 50%, #ffe066 100%);
    padding: 0.5rem;
    border-radius: 10px;
    display: inline-block;
    color: var(--white);
    font-weight: 600;
    margin: 0.5rem 0;
}

.equipment-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.equipment-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

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

.equipment-image {
    height: 200px;
    background: var(--party-gradient);
    position: relative;
}

.equipment-content {
    padding: 1.5rem;
}

.equipment-title {
    color: var(--business-navy);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.equipment-price {
    color: var(--party-primary);
    font-size: 1.1rem;
    font-weight: 700;
}

/* ===== PARTY SUCCESS STORIES ===== */
.success-stories {
    background: var(--light-gray);
    padding: 4rem 0;
}

.story-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
    position: relative;
    border-left: 5px solid var(--party-secondary);
}

.story-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.story-author {
    font-weight: 600;
    color: var(--business-navy);
}

.story-event {
    color: var(--party-primary);
    font-size: 0.9rem;
}

/* CSS Foundation Complete - Ready for Content Agents *//* Cache buster - Thu Sep 11 17:53:31 EDT 2025 */
