/* OilyFamily.com - Main Stylesheet */

:root {
    --forest-green: #1a4d3f;
    --deep-green: #0f3d2f;
    --gold: #d4a855;
    --light-gold: #f4e7c8;
    --cream: #faf8f3;
    --white: #ffffff;
    --text-dark: #2c3e35;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

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

.hamburger {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--forest-green);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.logo-container a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    position: relative;
}

.logo svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest-green);
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
}

.cart-icon {
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--forest-green);
    padding: 100px 2rem 2rem;
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 1.5rem;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    transition: color 0.3s ease;
    display: block;
}

.mobile-nav a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    margin-top: 120px;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.hero-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-tagline {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.4s both;
}

/* Buttons */
.cta-button {
    background: var(--gold);
    color: var(--deep-green);
    padding: 1.2rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 168, 85, 0.4);
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 168, 85, 0.6);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--white);
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease 1s both;
}

.cta-secondary:hover {
    background: var(--gold);
    color: var(--deep-green);
}

.green-btn {
    background: var(--forest-green);
    color: var(--white);
}

.green-btn:hover {
    background: var(--deep-green);
}

.hero-subtext {
    color: var(--white);
    margin-top: 1.5rem;
    font-size: 1rem;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Section Styles */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section.green-bg {
    background: var(--forest-green);
    color: var(--white);
    max-width: 100%;
    padding: 5rem 2rem;
}

.section.cream-bg {
    background: var(--cream);
}

.section.dark-green-bg {
    background: var(--deep-green);
    color: var(--white);
    max-width: 100%;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: inherit;
}

.section.green-bg h2,
.section.dark-green-bg h2 {
    color: var(--gold);
}

.section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.section.green-bg h3,
.section.dark-green-bg h3 {
    color: var(--gold);
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    max-width: 800px;
    height: 300px;
    margin: 3rem auto;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.philosophy-image {
    height: 300px;
    background: linear-gradient(135deg, var(--cream) 0%, #e8dcc0 100%);
}

.product-visual {
    height: 400px;
    background: linear-gradient(to bottom, var(--cream) 0%, var(--white) 100%);
}

.feature-image {
    height: 350px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.join-image {
    height: 300px;
    background: linear-gradient(to right, #a8d5ba, #8bc9a6);
}

.circle-image {
    height: 300px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.meet-image {
    height: 350px;
    background: linear-gradient(135deg, #ff9a56, #ff6b9d);
}

/* Lists */
.why-list,
.product-list {
    list-style: none;
    margin: 2rem 0;
}

.why-list li,
.product-list li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.why-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-weight: bold;
    font-size: 1.5rem;
}

.product-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Path Cards */
.path-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.path-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.path-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.path-card h3 {
    font-size: 1.8rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

/* Content Boxes */
.content-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 3rem 0;
}

.content-box h3 {
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.content-box p {
    margin-bottom: 1rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.feature-item h4 {
    color: var(--forest-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Meet Tracy Section */
.meet-section {
    background: var(--deep-green);
    color: var(--white);
    padding: 5rem 2rem;
}

.meet-section h2 {
    color: var(--gold);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--forest-green);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease;
}

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

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

/* Footer */
footer {
    background: var(--deep-green);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.footer-nav ul {
    list-style: none;
    margin-bottom: 3rem;
}

.footer-nav li {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.social-links a {
    color: var(--gold);
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: var(--light-gold);
}

.footer-logo {
    width: 150px;
    height: 150px;
    margin: 2rem auto;
    opacity: 0.3;
}

.footer-logo svg {
    width: 100%;
    height: 100%;
}

.footer-disclaimer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-copyright {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.py-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .section h2 {
        font-size: 2.5rem;
    }

    .section h3 {
        font-size: 1.6rem;
    }

    .path-container,
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    header {
        padding: 1rem 1.5rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    header,
    footer,
    .cta-button {
        display: none;
    }
}
