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

:root {
    --primary-color: #8B4C8F;
    --secondary-color: #D4A5D9;
    --accent-color: #FFD700;
    --dark-color: #2C2C2C;
    --light-color: #F8F8F8;
    --text-dark: #333;
    --text-light: #666;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #8B4C8F 0%, #D4A5D9 100%);
    --gradient-2: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(139, 76, 143, 0.3);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(139, 76, 143, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 76, 143, 0.05) 0%, rgba(212, 165, 217, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px rgba(139, 76, 143, 0.15);
}

.navbar.scrolled::before {
    opacity: 1;
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover h1::after {
    width: 100%;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo:hover .logo-subtitle {
    opacity: 1;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 100%;
    background: rgba(139, 76, 143, 0.05);
    border-radius: 8px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover::after {
    width: calc(100% + 16px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hamburger:hover span {
    background: var(--secondary-color);
    transform: scaleX(1.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient-1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

/* Make navbar blend with hero on initial load */
body:not(.scrolled) .navbar {
    background: rgba(139, 76, 143, 0.15);
    backdrop-filter: blur(15px) saturate(120%);
    -webkit-backdrop-filter: blur(15px) saturate(120%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(139, 76, 143, 0.1);
}

body:not(.scrolled) .navbar::before {
    opacity: 0;
}

body:not(.scrolled) .navbar .nav-menu a {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

body:not(.scrolled) .navbar .nav-menu a:hover {
    color: var(--white);
}

body:not(.scrolled) .navbar .nav-menu a::before {
    background: rgba(255, 255, 255, 0.4);
}

body:not(.scrolled) .navbar .logo h1 {
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

body:not(.scrolled) .navbar .logo-subtitle {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

body:not(.scrolled) .navbar .logo:hover .logo-subtitle {
    color: rgba(255, 255, 255, 1);
}

body:not(.scrolled) .navbar .hamburger span {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 76, 143, 0.7) 0%, rgba(212, 165, 217, 0.6) 100%);
    z-index: 1;
    opacity: 0.8;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: var(--accent-color);
    color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Section Styles */
section {
    padding: 10px 0 80px;
    scroll-margin-top: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-text-image-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 76, 143, 0.2);
    border: 3px solid rgba(139, 76, 143, 0.1);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.03);
}

.about-text {
    text-align: left;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Meet Tracy Section */
.meet-tracy {
    background: var(--white);
    position: relative;
}

.tracy-content {
    max-width: 900px;
    margin: 0 auto;
}

.tracy-card {
    background: linear-gradient(135deg, rgba(139, 76, 143, 0.05) 0%, rgba(212, 165, 217, 0.05) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(139, 76, 143, 0.15);
    border: 2px solid rgba(139, 76, 143, 0.1);
    position: relative;
    overflow: hidden;
}

.tracy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-2);
}

.tracy-image-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 76, 143, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.tracy-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.tracy-image-container:hover .tracy-image {
    transform: scale(1.05);
}

.tracy-text {
    max-width: 800px;
    margin: 0 auto;
}

.tracy-intro {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.tracy-intro strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.tracy-story {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.8;
    text-align: left;
}

.tracy-story strong {
    color: var(--primary-color);
    font-weight: 700;
}

.tracy-mission {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 1.5rem 0;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

.tracy-mission strong {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.tracy-callout {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 1.5rem 0;
    line-height: 1.8;
    text-align: center;
    font-weight: 500;
    padding: 1rem;
    background: rgba(139, 76, 143, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.tracy-facebook-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tracy-facebook-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.tracy-shipping {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(139, 76, 143, 0.1);
    text-align: center;
}

.tracy-shipping strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Facebook Section */
.facebook-section {
    background: linear-gradient(135deg, #1877F2 0%, #4267B2 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.facebook-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.facebook-section .section-title {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.facebook-section .title-underline {
    background: var(--white);
}

.facebook-content {
    position: relative;
    z-index: 2;
}

.facebook-main {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.facebook-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.facebook-main h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.facebook-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.facebook-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--white);
    color: #1877F2;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
}

.facebook-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: var(--accent-color);
    color: var(--white);
}

.fb-icon {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
    background: #1877F2;
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.facebook-button:hover .fb-icon {
    background: var(--white);
    color: var(--accent-color);
}

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

.fb-feature {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fb-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.fb-feature-icon {
    font-size: 2rem;
}

.fb-feature span:last-child {
    font-weight: 600;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background: var(--gradient-1);
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.info-text p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.social-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

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

.footer-credit {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 10px;
}

.tero-tech-link {
    color: var(--accent-color);
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    font-weight: 600;
    opacity: 1;
}

.tero-tech-link:hover {
    color: var(--secondary-color);
    text-decoration-color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(212, 165, 217, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 1) !important;
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        width: 100%;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(139, 76, 143, 0.2);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(139, 76, 143, 0.1);
    }

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

    .nav-menu a {
        padding: 1rem 0;
        font-size: 1.1rem;
        color: var(--text-dark) !important;
        text-shadow: none !important;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a::before {
        width: 0;
        background: var(--gradient-1) !important;
    }

    .nav-menu a:hover {
        transform: translateX(5px);
        color: var(--primary-color) !important;
    }

    .nav-menu a:hover::before {
        width: 60px;
    }

    .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(7px, -7px);
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }

    section {
        padding: 80px 0 60px;
        scroll-margin-top: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 15px;
    }

    .section-title {
        font-size: 2rem;
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-text-image-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image-container {
        max-width: 100%;
        margin-bottom: 0;
    }

    .about-text {
        padding: 0 10px;
        text-align: center;
    }

    .about-text .lead {
        font-size: 1.1rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tracy-card {
        padding: 35px 25px;
    }

    .tracy-image-container {
        max-width: 300px;
        margin-bottom: 1.5rem;
    }

    .tracy-intro {
        font-size: 1.1rem;
    }

    .tracy-story {
        font-size: 1rem;
        text-align: left;
    }

    .tracy-mission {
        font-size: 1.1rem;
    }

    .tracy-mission strong {
        font-size: 1.2rem;
    }

    .tracy-callout {
        font-size: 1rem;
    }

    .tracy-shipping {
        font-size: 1rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .facebook-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .facebook-main {
        padding: 40px 25px;
    }
    
    .facebook-main h3 {
        font-size: 1.8rem;
    }

    .facebook-description {
        font-size: 1rem;
    }

    .facebook-button {
        padding: 15px 35px;
        font-size: 1rem;
        flex-direction: column;
        gap: 8px;
    }

    .fb-feature {
        padding: 15px 10px;
    }

    .fb-feature span:last-child {
        font-size: 0.9rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .info-icon {
        font-size: 2rem;
    }

    .info-text h3 {
        font-size: 1.2rem;
    }

    .info-text p {
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .nav-container {
        padding: 1rem 12px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: auto;
        max-width: 90%;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .about-text-image-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-image-container {
        max-width: 100%;
        margin-bottom: 0;
    }

    .about-text {
        text-align: center;
    }

    .about-text .lead {
        font-size: 1rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .tracy-card {
        padding: 30px 20px;
    }

    .tracy-image-container {
        max-width: 250px;
        margin-bottom: 1.2rem;
    }

    .tracy-intro {
        font-size: 1rem;
    }

    .tracy-story {
        font-size: 0.95rem;
        text-align: left;
    }

    .tracy-mission {
        font-size: 1rem;
    }

    .tracy-mission strong {
        font-size: 1.1rem;
    }

    .tracy-callout {
        font-size: 0.95rem;
        padding: 0.8rem;
    }

    .tracy-shipping {
        font-size: 0.95rem;
    }

    .facebook-main {
        padding: 30px 20px;
    }

    .facebook-main h3 {
        font-size: 1.5rem;
    }

    .facebook-description {
        font-size: 0.95rem;
    }

    .facebook-button {
        padding: 14px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
    }

    .facebook-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fb-feature {
        padding: 12px;
    }

    .info-text h3 {
        font-size: 1.1rem;
    }

    .info-text p {
        font-size: 0.9rem;
    }

    .social-link {
        font-size: 0.95rem;
        word-break: break-word;
    }
}
