/* 
Theme Name: Imagine That 3D Store
Description: Custom styles for the 3D printing toy store theme
Version: 1.0
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1e293b 0%, #1e40af 50%, #1e293b 100%);
    min-height: 100vh;
}

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

/* Header */
.site-header {
    position: relative;
    z-index: 10;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
    padding: 1rem 0;
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #22d3ee;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #06b6d4;
    color: white;
}

.btn-primary:hover {
    background: #0891b2;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

.btn-outline {
    background: transparent;
    color: #22d3ee;
    border: 2px solid #22d3ee;
}

.btn-outline:hover {
    background: #22d3ee;
    color: #1e293b;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(30, 64, 175, 0.7));
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-out;
}

.hero-title .highlight {
    color: #22d3ee;
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: rgba(51, 65, 85, 0.5);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid rgba(34, 211, 238, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    color: #22d3ee;
    margin: 0 auto 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #d1d5db;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.services-content h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.services-list {
    list-style: none;
    margin-bottom: 2rem;
}

.services-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.services-list li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: #22d3ee;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.services-image {
    position: relative;
}

.services-image img {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.services-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
    border-radius: 0.75rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: rgba(51, 65, 85, 0.5);
}

.contact-form {
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid rgba(34, 211, 238, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-out;
}

.contact-form.hidden {
    display: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    background: #475569;
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #22d3ee;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    color: #22d3ee;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #22d3ee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #06b6d4;
}

/* Footer */
.site-footer {
    background: #0f172a;
    padding: 2rem 0;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.footer-text {
    color: #9ca3af;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: #22d3ee;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #06b6d4;
}

