/* Modern Day Hippie Couture - Website Styles */

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #fafafa;
}

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

/* Header and Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
}

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

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #38a169;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.hero-title .highlight {
    color: #38a169;
}

.hero-description {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #38a169;
    color: white;
}

.btn-primary:hover {
    background: #2f855a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #38a169;
    border: 2px solid #38a169;
}

.btn-secondary:hover {
    background: #38a169;
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder, .about-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #68d391 0%, #38a169 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 20px 40px rgba(56, 161, 105, 0.3);
}

.placeholder-content span {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.placeholder-content p, .about-placeholder p {
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
}

/* Sections */
.about, .mission, .business, .contact {
    padding: 80px 0;
}

.about {
    background: white;
}

.mission {
    background: #f7fafc;
}

.business {
    background: white;
}

.contact {
    background: #2d3748;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.7;
}

.about-text ul {
    list-style: none;
}

.about-text li {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.about-placeholder span {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

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

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.mission-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Business Section */
.business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.business-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.business-item ul {
    list-style: none;
}

.business-item li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.business-item p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-content h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

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

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #68d391;
}

.contact-item p {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    color: #68d391;
    margin-bottom: 1rem;
}

.footer-links h4 {
    color: #68d391;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #68d391;
}

.footer-contact h4 {
    color: #68d391;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container, .about-content, .business-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-placeholder, .about-placeholder {
        width: 250px;
        height: 250px;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    background: white;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2d3748;
    margin: 2rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin: 1.5rem 0 0.5rem;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.last-updated {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 2rem;
}

/* TikTok Integration Section */
.tiktok-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.tiktok-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tiktok-intro {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.tiktok-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.tiktok-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tiktok-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.tiktok-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.cta-button {
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-button.secondary:hover {
    background: white;
    color: #667eea;
    border-color: white;
}

@media (max-width: 768px) {
    .tiktok-content h2 {
        font-size: 2.5rem;
    }
    
    .tiktok-intro {
        font-size: 1.1rem;
    }
    
    .tiktok-grid {
        grid-template-columns: 1fr;
    }
    
    .tiktok-cta {
        flex-direction: column;
        align-items: center;
    }
}