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

:root {
    --foiled-navy: #141D37;
    --bright-pink: #EC5D82;
    --vibrant-orange: #FF8C42;
    --neon-green: #00E091;
    --soft-cream: #FAF7F0;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Navbar */
nav {
    background: var(--foiled-navy);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FF4F81;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.4pt;
}

.logo-img {
    height: 100px;
    width: 100px;
    max-height: 100px;
    max-width: 100px;
    object-fit: contain;
}

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

nav a {
    color: #FF4F81;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    background: linear-gradient(45deg, var(--bright-pink), var(--vibrant-orange), var(--neon-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    background: linear-gradient(
        rgba(20, 29, 55, 0.85),
        rgba(20, 29, 55, 0.85)
    ), url('TpT-StoreBanner.png');
    background-size: cover;
    background-position: center;
    color: var(--soft-cream);
    padding: 8rem 0 6rem;
    text-align: center;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.0;
    letter-spacing: -0.4pt;
    color: var(--soft-cream);
}

.tagline {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--bright-pink), var(--vibrant-orange), var(--neon-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.4;
    letter-spacing: 0.4pt;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--soft-cream);
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(45deg, var(--bright-pink), var(--vibrant-orange), var(--neon-green));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(236, 93, 130, 0.4);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--soft-cream);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--foiled-navy);
    font-weight: 600;
    letter-spacing: -0.4pt;
}

.about > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--text-dark);
}

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

.stat {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

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

.stat h3 {
    color: var(--foiled-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Resources Section */
.resources {
    padding: 6rem 0;
    background: white;
}

.resources h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--foiled-navy);
    font-weight: 600;
    letter-spacing: -0.4pt;
}

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

.resource-card {
    background: var(--soft-cream);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #e5e7eb;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(236, 93, 130, 0.2);
    border-color: var(--bright-pink);
}

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

.resource-card h3 {
    color: var(--foiled-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.resource-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--bright-pink), var(--vibrant-orange), var(--neon-green));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(236, 93, 130, 0.3);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(
        rgba(20, 29, 55, 0.9),
        rgba(20, 29, 55, 0.9)
    ), linear-gradient(45deg, var(--bright-pink), var(--vibrant-orange), var(--neon-green));
    color: #FF4F81;
    padding: 6rem 0;
}

.newsletter .container {
    max-width: 800px;
}

.newsletter h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.4pt;
}

.newsletter-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.newsletter-benefits {
    list-style: none;
    margin-bottom: 3rem;
}

.newsletter-benefits li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.newsletter-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
    font-size: 1.5rem;
}

.newsletter-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--bright-pink);
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, var(--bright-pink), var(--vibrant-orange), var(--neon-green));
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--foiled-navy);
    margin-top: 1rem;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--soft-cream);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--foiled-navy);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.4pt;
}

.cta-tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--bright-pink), var(--vibrant-orange), var(--neon-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.4pt;
}

/* Footer */
footer {
    background: var(--foiled-navy);
    color: #FF4F81;
    padding: 3rem 0 1.5rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FF4F81;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.2pt;
}

.footer-links h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-links a {
    color: #FF4F81;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    opacity: 1;
    background: linear-gradient(45deg, var(--bright-pink), var(--vibrant-orange), var(--neon-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 247, 240, 0.1);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero {
        padding: 5rem 0 4rem;
    }
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(250, 247, 240, 0.1);
    color: #FF4F81;
    transition: all 0.3s;
}

.social-link:hover {
    background: linear-gradient(45deg, var(--bright-pink), var(--vibrant-orange), var(--neon-green));
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(236, 93, 130, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Social Media Section */
.social-section {
    padding: 6rem 0;
    background: white;
}

.social-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--foiled-navy);
    font-weight: 600;
    letter-spacing: -0.4pt;
}

.social-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.social-card {
    background: var(--soft-cream);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 79, 129, 0.3);
    border-color: #FF4F81;
}

.social-card svg {
    color: #FF4F81;
    width: 32px;
    height: 32px;
}

.social-card h3 {
    color: var(--foiled-navy);
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

.social-card p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.95rem;
}
