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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #2F4F4F;
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.logo-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('extracted_photos/rockster_recycler_logo.jpg') no-repeat center center;
    background-size: contain;
    opacity: 1;
    z-index: 1;
    filter: none;
}

.logo-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* Title Banner */
.title-banner {
    background: #2F4F4F;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.title-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Promotional Messages */
.promo-messages {
    padding: 40px 0;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.promo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.promo-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.promo-item i {
    font-size: 2.5rem;
    color: white;
}

.promo-item h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

/* Stock Photos */
.stock-photos {
    padding: 60px 0;
    background: #f5f5f5;
}

.stock-photos h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2F4F4F;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.photo-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.stock-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Flashing Phone Number Display */
.phone-display {
    padding: 40px 0;
    background: #2F4F4F;
    text-align: center;
}

.phone-number-flash {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 40px;
    border-radius: 15px;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    animation: colorFlash 2s infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.phone-number-flash::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 2.5s infinite;
}

.phone-number-flash i {
    font-size: 2.2rem;
    animation: pulse 1s infinite;
}

@keyframes colorFlash {
    0%, 100% {
        background: linear-gradient(45deg, #FF6B35, #FF8C42);
        transform: scale(1);
    }
    25% {
        background: linear-gradient(45deg, #FF8C42, #FF6B35);
        transform: scale(1.02);
    }
    50% {
        background: linear-gradient(45deg, #FF6B35, #E55A2B);
        transform: scale(1.05);
    }
    75% {
        background: linear-gradient(45deg, #E55A2B, #FF6B35);
        transform: scale(1.02);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Contact Information */
.contact-info {
    padding: 60px 0;
    background: #f5f5f5;
}

.contact-info h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2F4F4F;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-item i {
    font-size: 3rem;
    color: #FF6B35;
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2F4F4F;
}

.contact-item p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Showcase */
.showcase {
    padding: 60px 0;
    background: white;
}

.showcase h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2F4F4F;
}

.showcase-photo {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Video Showcase */
.video-showcase {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.video-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2F4F4F;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.video-item {
    position: relative;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    color: white;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
}

.video-overlay span {
    font-size: 1rem;
    font-weight: 500;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Flashing Call Button */
.flashing-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.call-btn {
    background: #FF6B35;
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    animation: flash 1.5s infinite;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 2s infinite;
}

.call-btn:hover {
    background: #E55A2B;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.8);
    animation: none;
}

@keyframes flash {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 107, 53, 1);
        transform: scale(1.05);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 40px 0;
    }
    
    .logo-background {
        background-size: contain;
    }
    
    .title-banner h1 {
        font-size: 2rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stock-img {
        height: 250px;
    }
    
    .call-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .title-banner h1 {
        font-size: 1.8rem;
    }
    
    .stock-photos h2,
    .showcase h2 {
        font-size: 1.5rem;
    }
} 