/* BeachPrints3D - Vibrant Beach Theme */
:root {
    --sunset-orange: #FF8C42;
    --bright-orange: #FFA726;
    --coral: #FF6B9D;
    --turquoise: #40E0D0;
    --golden-yellow: #FFD700;
    --peach: #FFAB91;
    --white: #FFFFFF;
    --off-white: #FFF9F0;
    --light-gray: #F5F5F5;
    --text-dark: #2C3E50;
    --text-gray: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.6;
}

/* Marquee Specials Bar */
.marquee-container {
    background: linear-gradient(90deg, var(--sunset-orange), var(--bright-orange), var(--peach));
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    padding: 0 50px;
    display: inline-block;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate content for seamless loop */
.marquee-content::after {
    content: '🌟 NOW SHIPPING WORLDWIDE!   ⏱️ Current Fulfillment Time: 3-5 Business Days   🎁 Free Shipping on Orders Over $50!   🏖️ Welcome to BeachPrints3D!';
    padding-left: 50px;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-links a {
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
}

.social-links a:hover {
    background-color: var(--sunset-orange);
    color: var(--white);
    transform: scale(1.15);
}

/* Navigation */
.navigation {
    background-color: var(--sunset-orange);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.25);
}

/* Hero Image Section */
.hero {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Main Content */
.content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

.section {
    margin-bottom: 80px;
}

.section h1 {
    font-size: 3rem;
    color: var(--sunset-orange);
    margin-bottom: 20px;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    color: var(--sunset-orange);
    margin-bottom: 40px;
    text-align: center;
}

.intro {
    font-size: 1.3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 20, 147, 0.2);
    border-color: var(--sunset-orange);
}

.product-image-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--turquoise), var(--bright-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.product-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--sunset-orange);
    margin: 20px 0;
}

.btn-primary {
    background: linear-gradient(90deg, var(--sunset-orange), var(--coral));
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.4);
}

/* Policy Grid */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.policy-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    border-left: 5px solid var(--turquoise);
}

.policy-card h3 {
    color: var(--sunset-orange);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* FAQ */
.faq-item {
    background-color: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border-left: 5px solid var(--orange);
}

.faq-item h3 {
    color: var(--sunset-orange);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Contact Section */
#contact {
    background-color: var(--white);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

#contact a {
    color: var(--sunset-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#contact a:hover {
    color: var(--coral);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, var(--sunset-orange), var(--bright-orange));
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
}

.footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo {
        max-width: 300px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .navigation {
        padding: 10px;
    }
    
    .nav-link {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section h1 {
        font-size: 2rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .intro {
        font-size: 1.1rem;
    }
    
    .hero {
        max-height: 400px;
    }
    
    .product-grid,
    .policy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .marquee-content {
        font-size: 12px;
    }
    
    .logo {
        max-width: 220px;
    }
    
    .section h1 {
        font-size: 1.6rem;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
}
