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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .main {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-text .sub {
    font-size: 0.9rem;
    color: #666;
}

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

.nav-menu a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #007bff;
}

.nav-menu a.highlight-link {
    color: #ff9900;
    font-weight: 600;
    position: relative;
}

.nav-menu a.highlight-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff9900;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a.highlight-link:hover::after {
    transform: scaleX(1);
}

.nav-menu a.highlight-link:hover {
    color: #e68a00;
}

.mobile-menu-toggle {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #333;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}

/* Hero and Video Section */
.hero {
    width: 100%;
    background: #f8f9fa;
    padding: 2rem 0;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #333;
}

.hero-content p {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.2rem;
}

.livestream-container {
    width: 100%;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    width: 100%;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.video-column h2 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.8rem;
    text-align: center;
}

/* Features Section */
.features {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007bff;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
}

.feature-card a {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.feature-card a i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007bff;
}

.feature-card a h3 {
    margin-bottom: 1rem;
    color: #333;
}

.feature-card a p {
    color: #666;
}

/* Newsletter Section */
.newsletter {
    background: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.newsletter h2 {
    margin-bottom: 1rem;
    color: #333;
}

.newsletter p {
    margin-bottom: 2rem;
    color: #666;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.8rem 2rem;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #0056b3;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #fff;
}

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

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

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

.footer-section a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #ddd;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
    }

    .nav-menu {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: #fff !important;
        padding: 80px 2rem 2rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        width: 100% !important;
    }

    .nav-menu a {
        display: block !important;
        padding: 0.5rem 0 !important;
        font-size: 1.2rem !important;
    }

    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        background: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0.5rem 0 0 1rem !important;
        display: none !important;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu a {
        padding: 0.5rem 0 !important;
        font-size: 1.1rem !important;
    }

    .dropdown-toggle {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    .dropdown-toggle i {
        transition: transform 0.3s ease !important;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg) !important;
    }

    .hero-content,
    .livestream-container,
    .features {
        padding: 1rem;
    }

    .feature-card {
        min-width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section {
        min-width: 100%;
    }

    .logo img {
        height: 40px;
    }
}

/* Page Header */
.page-header {
    background: #f8f9fa;
    padding: 1rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Page Header Logo */
.page-header-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.page-header-logo img {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
}

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

/* About Page */
.about-content {
    padding: 2rem 0 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.host-profile {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.host-profile h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.host-card {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.host-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.host-image i {
    font-size: 4rem;
    color: #007bff;
}

.host-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.host-info p {
    color: #666;
    line-height: 1.8;
}

.partners-section {
    margin-top: 4rem;
}

.partners-section h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

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

.partner-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.partner-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.partner-card p {
    color: #666;
}

/* Laws & Info Page */
.laws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.law-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.law-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.law-card p {
    color: #666;
    margin-bottom: 1rem;
}

/* Equipment Page */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.equipment-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.equipment-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

/* Media Page */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.media-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.media-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    background: #f8f9fa;
}

.media-info {
    padding: 1.5rem;
}

.media-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.media-info p {
    color: #666;
}

/* FAQ Page */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
}

.faq-item p {
    color: #666;
    display: none;
}

.faq-item.active p {
    display: block;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .host-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 2rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .host-image {
        width: 150px;
        height: 150px;
    }

    .partners-grid,
    .laws-grid,
    .equipment-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .page-header-logo img {
        height: 80px;
    }
    
    .footer-logo img {
        height: 60px;
    }
}

/* Submissions Page */
.submission-guidelines {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.submission-guidelines h2 {
    color: #333;
    margin-bottom: 1rem;
}

.submission-guidelines ul {
    list-style: none;
    padding-left: 0;
}

.submission-guidelines li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.submission-guidelines li::before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

.google-form-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.google-form-iframe {
    width: 100%;
    min-height: 800px;
    border: none;
}

@media (max-width: 768px) {
    .google-form-container {
        padding: 1rem;
    }

    .google-form-iframe {
        min-height: 1000px; /* Slightly taller on mobile for better usability */
    }
}

/* Thank You Page */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.thank-you-content i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1.5rem;
}

.thank-you-content h1 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.thank-you-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background: #0056b3;
}

.button.secondary {
    background: #6c757d;
}

.button.secondary:hover {
    background: #545b62;
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 2rem 1rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
        text-align: center;
    }
}

/* Coming Soon Page Styles */
.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.coming-soon-content i {
    color: #007bff;
    margin-bottom: 2rem;
    font-size: 4rem;
}

.coming-soon-content h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.coming-soon-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-list li {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

/* Q&A Page Styles */
.qa-content {
    max-width: 1200px;
    margin: 0 auto;
}

.qa-section {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.qa-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
}

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

.qa-feature {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.qa-feature i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.qa-feature h3 {
    color: #333;
    margin-bottom: 1rem;
}

.qa-feature ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.qa-feature ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.qa-feature ul li::before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

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

.method {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.method h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.method p {
    color: #666;
    line-height: 1.6;
}

/* Safety Tips Page Styles */
.safety-content {
    max-width: 1200px;
    margin: 0 auto;
}

.safety-section {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.safety-section h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

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

.safety-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.safety-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.safety-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.safety-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.safety-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.safety-card ul li::before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .feature-list,
    .qa-features,
    .submission-methods,
    .safety-grid {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-content,
    .qa-section,
    .safety-section {
        padding: 1.5rem;
    }
}

/* Footer Logo */
.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-logo img {
        height: 60px;
    }
}

/* Donation Button */
#donate-button-container {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#donate-button {
    display: inline-block;
    margin: 0 auto;
}

/* Product Section Styles */
.products-content {
    padding: 2rem 0;
}

.products-section {
    margin-bottom: 4rem;
}

.products-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

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

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.amazon-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ff9900;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.amazon-link:hover {
    background: #e68a00;
}

.amazon-link.secondary {
    background: #232f3e;
}

.amazon-link.secondary:hover {
    background: #1a2530;
}

.product-info .safety-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
    font-size: 0.9rem;
    border-radius: 0 4px 4px 0;
}

.product-info .safety-note strong {
    color: #664d03;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .product-links {
        flex-direction: column;
    }
}

.safety-warning {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 4px 4px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.safety-warning p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.safety-warning strong {
    color: #664d03;
}

.safety-link {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.safety-link:hover {
    color: #003d7a;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .safety-warning {
        padding: 1rem;
        margin: 1rem;
    }
}

.product-options {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.product-options li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.product-options li::before {
    content: "•";
    color: #ff9900;
    position: absolute;
    left: 0;
}

.product-options li strong {
    color: #333;
}

.battery-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: #e8f4f8;
    border-left: 4px solid #007bff;
    color: #0056b3;
    font-size: 0.9rem;
    border-radius: 0 4px 4px 0;
}

.battery-note strong {
    color: #003d7a;
}

.disclaimer {
    background-color: #f8f9fa;
    border-left: 4px solid #ff9900;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.disclaimer p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.disclaimer strong {
    color: #232f3e;
}

.disclaimer .suggestion-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.disclaimer .suggestion-cta p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
}

.disclaimer .cta-button {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer .cta-button:hover {
    background: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.disclaimer .cta-button i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .disclaimer {
        padding: 1rem;
    }
    
    .disclaimer .suggestion-cta {
        margin-top: 1rem;
        padding-top: 1rem;
    }
}

.product-card.full-width {
    grid-column: 1 / -1;
    max-width: none;
}

.product-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
}

.product-image-grid .product-image {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.product-image-grid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .product-image {
        height: 250px;
    }
    
    .product-image-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image-grid .product-image {
        height: 200px;
    }
}

.category-nav {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 80px;
    z-index: 900;
    border-bottom: 1px solid #eee;
}

.category-nav .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-nav ul::-webkit-scrollbar {
    display: none;
}

.category-nav li {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
}

.category-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.category-nav a:hover {
    color: #ff9900;
}

.category-nav a:active {
    color: #ff9900;
    border-bottom-color: #ff9900;
}

@media (max-width: 768px) {
    .category-nav {
        top: 70px;
    }
    
    .category-nav .container {
        padding: 0 1rem;
    }
    
    .category-nav a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

.intro-section {
    background: linear-gradient(to bottom, #f8f9fa, #fff);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.suggestion-cta {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.suggestion-cta p {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.cta-button {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    background: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .intro-section {
        padding: 1rem 0;
    }

    .intro-content {
        padding: 0 1rem;
    }

    .suggestion-cta {
        padding: 1rem;
    }
}

/* Form Modal Styles */
.form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.form-modal.active {
    display: flex;
}

.form-modal-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header i {
    font-size: 2.5rem;
    color: #ff9900;
    margin-bottom: 1rem;
}

.form-header h2 {
    color: #232f3e;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.form-header p {
    color: #666;
}

.form-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.form-modal-close:hover {
    background: #f8f9fa;
    color: #333;
}

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

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff9900;
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.submit-button {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .intro-section {
        padding: 2rem 0;
    }

    .intro-text ul {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 0 2rem;
    }

    .form-modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group.half {
        width: 100%;
    }
}

/* Remove the iOS Safari Fix section as it's causing issues */
@supports (-webkit-touch-callout: none) {
    @media screen and (max-width: 768px) {
        .mobile-menu-toggle {
            display: block !important;
        }
        .nav-menu {
            display: none !important;
        }
        .nav-menu.active {
            display: flex !important;
        }
    }
}

/* --- Begin navigation/menu styles from index.html --- */
@media (max-width: 768px) {
    .desktop-content {
        display: none !important;
    }
    .mobile-content {
        display: flex !important;
    }
    .promo-banner .container {
        flex-direction: column;
        gap: 10px;
    }
    .promo-banner button {
        width: 100% !important;
    }
}
.floating-beard {
    position: fixed;
    opacity: 0.3;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}
.floating-beard:hover {
    opacity: 0.8;
    transform: scale(1.1);
}
.floating-beard.fade-out {
    opacity: 0;
    pointer-events: none;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.audio-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
}
.audio-control:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}
.audio-control.muted {
    opacity: 0.5;
}
@media (max-width: 768px) {
    .nav-right {
        gap: 10px;
    }
    .audio-control {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
}
.audio-player {
    margin-left: 20px;
}
.audio-player audio {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px;
}
@media (max-width: 768px) {
    .audio-player {
        margin-left: 10px;
    }
    .audio-player audio {
        width: 150px;
    }
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    padding: 0.5rem 0;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #2c3e50;
    padding: 0.75rem 1.5rem;
    display: block;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #3498db;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 1rem 2rem;
    }

    .dropdown-menu {
        position: static;
        background: #f8f9fa;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 1rem;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-menu-toggle {
        display: block;
    }
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
}

.logo img {
    height: 50px;
    margin-right: 1rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .main {
    font-size: 1.5em;
    font-weight: bold;
}

.logo-text .sub {
    font-size: 0.9em;
    opacity: 0.8;
}

.nav-right {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }
}
/* --- End navigation/menu styles from index.html --- */

/* Schools Page */
.schools-content {
    padding: 2rem 0 4rem;
}

.schools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.schools-info h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.schools-info h3 {
    color: #333;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.schools-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.schools-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.schools-info ul li {
    color: #666;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.schools-info ul li:before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
}

.cta-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.cta-section h3 {
    margin-top: 0;
}

.cta-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .schools-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .schools-image {
        order: -1;
    }
} 