/*h1 {
    text-align: left;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
}*/



/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #9fe0eb;
    line-height: 1.6;
    text-align: left;
}

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: left;
    flex-direction: column;
    text-decoration: none;
    color: #333;
}

.logo {
    font-size: 2.8rem;
    font-weight: 300;
    color: #4a6da7;
}

.tagline {
    font-size: 0.8rem;
    color: #777;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #4a6da7;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #4a6da7;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Main content */
main {
    margin-top: 80px;
    padding: 2rem 5%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    padding: 3rem 0;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #4a6da7;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-section p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin-bottom: 2rem;
}



/* a specific class for left-justified content */
.text-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto; /* Centers the container but keeps text left-aligned */
    padding: 2rem 0;
}

.text-content h1 {
    font-size: 2.5rem;
    color: #4a6da7;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: left;
}

.text-content p {
    font-size: 1.1rem;
    color: #0c0c0c;
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.7;
}


/* Image with caption styling */
.image-with-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

.hero-image-small {
    width: 50%;
    max-width: 220px;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.image-caption {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    text-align: center;
    max-width: 400px;
}





.hero-image {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.video-container {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

video {
    width: 100%;
    display: block;
}

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

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.about-card h3 {
    font-size: 1.4rem;
    color: #4a6da7;
    margin-bottom: 1rem;
}

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

/* Call to action */
.cta-section {
    text-align: center;
    padding: 4rem 0;
}

.cta-button {
    display: inline-block;
    background-color: #4a6da7;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #3a5a8f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 109, 167, 0.4);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 5%;
    text-align: center;
}

footer p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .logo-container {
        margin-bottom: 1rem;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    main {
        margin-top: 130px;
    }
}
    



/* Side by side images styling */
.image-comparison {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.comparison-image {
    flex: 1;
    max-width: 45%;
    min-width: 300px;
    text-align: center;
}

.comparison-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.comparison-image p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Mobile responsive - stack images on small screens */
@media (max-width: 768px) {
    .image-comparison {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .comparison-image {
        max-width: 90%;
        min-width: unset;
    }
}



/* Make images clickable with hover effect */
.comparison-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Lightbox modal styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Click instruction hint */
.click-hint {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin-top: 0.25rem;
}


/* SECTION BUTTONS */
/* SPECIFICALLY THE BUY NOW BUTTON IN PRODUCT */
.order-button-container {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
}

.order-button {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    min-width: 120px;
}

.order-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.6);
    text-decoration: none;
    color: white;
}

.order-button:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .order-button-container {
        position: static;
        top: auto;
        right: auto;
        transform: none;
        text-align: center;
        margin: 20px 0;
    }
    
    .order-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Ensure main content has enough right margin on larger screens */
@media (min-width: 769px) {
    main {
        margin-right: 180px; /* Adjust based on your button width */
    }
}