* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
    overflow-x: hidden;
    line-height: 1.8;
}
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 15px 0;
}
nav .container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    font-family: 'Lora', serif;
    font-size: 28px;
    font-weight: 700;
    color: #6bd142;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}
.logo a {
    color: #6bd142;
    text-decoration: none;
}
.menu-icon {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    vertical-align: middle;
    display: none;
    cursor: pointer;
}
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 15px;
    position: relative;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #8ef05a;
}
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 15px;
    width: calc(100% - 30px);
    height: 3px;
    background: #8ef05a;
}
.nav-links a.active {
    color: #6bd142;
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 15px;
    width: calc(100% - 30px);
    height: 3px;
    background: #6bd142;
}
.cart-icon {
    font-size: 24px;
    color: #f5f5f5;
    padding: 10px 15px;
    transition: color 0.3s ease;
}
.cart-icon:hover {
    color: #8ef05a;
}
#nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    flex-direction: column;
    padding: 60px 20px;
    transition: transform 0.3s ease;
    z-index: 999;
}
#nav-menu.active {
    transform: translateX(300px);
}
#nav-menu a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 18px;
    padding: 15px 0;
    display: block;
    transition: color 0.3s ease;
}
#nav-menu a:hover {
    color: #8ef05a;
}
#nav-menu a.active {
    color: #6bd142;
}
.home-logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}
section {
    position: relative;
    padding: 80px 20px;
    min-height: 100vh;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    scroll-margin-top: 60px;
    box-sizing: border-box;
}
section.visible {
    opacity: 1;
    transform: translateY(0);
}
#home {
    background-image: url('/team-images/bg1.png');
    background-repeat: repeat;
    background-color: rgba(10, 10, 10, 0.8);
    background-blend-mode: darken;
    padding-top: 200px;
    padding-bottom: 20px;
    z-index: 1;
}
#news {
    background-image: url('/team-images/bg.png');
    background-repeat: repeat;
    background-color: rgba(10, 10, 10, 0.8);
    background-blend-mode: darken;
    z-index: 2;
}
#services {
    background-image: url('/team-images/bg1.png');
    background-repeat: repeat;
    background-color: rgba(10, 10, 10, 0.8);
    background-blend-mode: darken;
    z-index: 3;
}
#team {
    background-image: url('/team-images/bg.png');
    background-repeat: repeat;
    background-color: rgba(10, 10, 10, 0.8);
    background-blend-mode: darken;
    z-index: 4;
}
#contact {
    background-image: url('/team-images/bg1.png');
    background-repeat: repeat;
    background-color: rgba(10, 10, 10, 0.8);
    background-blend-mode: darken;
    z-index: 5;
}
#products {
    background-image: url('/team-images/bg1.png');
    background-repeat: repeat;
    background-color: rgba(10, 10, 10, 0.8);
    background-blend-mode: darken;
    padding-top: 100px;
    z-index: 1;
    opacity: 1;
    transform: translateY(0);
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
h1, h2, h3 {
    font-family: 'Lora', serif;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
h1 {
    font-size: 48px;
    font-weight: 700;
    color: #6bd142;
    line-height: 1.2;
}
h2 {
    font-size: 36px;
    font-weight: 400;
    color: #f5f5f5;
}
h3 {
    font-size: 26px;
    font-weight: 400;
}
p {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #f5f5f5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
#home p {
    font-size: 20px;
    font-weight: 300;
    max-width: 800px;
}
.team-slideshow {
    max-width: 600px;
    margin: 20px auto;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: 'Lora', serif;
}
.slideshow-item {
    display: none;
    font-size: 18px;
    color: #f5f5f5;
}
.slideshow-item.active {
    display: block;
    animation: fade 0.5s ease-in-out;
}
.slideshow-item span {
    color: #6bd142;
    font-weight: 700;
}
@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.button {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #6bd142;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(107, 209, 66, 0.15), rgba(30, 166, 18, 0.15));
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    margin: 10px;
}
.button:hover {
    background: linear-gradient(135deg, #6bd142, #1ea612);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(107, 209, 66, 0.4);
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.news-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(107, 209, 66, 0.2);
}
.news-item p.date {
    font-size: 14px;
    color: #a0a0a0;
    margin-top: 10px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(107, 209, 66, 0.2);
}
.service-item a {
    display: inline-block;
    margin-top: 15px;
    color: #6bd142;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.service-item a:hover {
    color: #8ef05a;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.team-member {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}
.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(107, 209, 66, 0.2);
}
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.contact-info p {
    font-size: 16px;
}
.contact-info a {
    color: #6bd142;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-info a:hover {
    color: #8ef05a;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}
.social-links img {
    width: 48px;
    height: 48px;
    transition: transform 0.3s, filter 0.3s;
}
.social-links img:hover {
    transform: scale(1.15);
    filter: brightness(1.2);
}
.contact-form {
    max-width: 600px;
    margin: 30px auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}
#formSnapshotArea {
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #6bd142;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #f5f5f5;
    font-size: 16px;
}
.contact-form textarea {
    resize: vertical;
    max-height: 150px;
    padding-bottom: 35px;
}
.contact-form button {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    background: #6bd142;
    color: #0a0a0a;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
.contact-form button:hover {
    background: #8ef05a;
}
.contact-form button:disabled {
    background: #4a8a2e;
    cursor: not-allowed;
}
.char-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 12px;
    color: rgba(245, 245, 245, 0.5);
    z-index: 2;
}
.product-hero {
    position: relative;
    max-width: 1200px;
    height: 433px;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 12px;
}
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}
.carousel-item {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.carousel-item.active {
    display: block;
    animation: fade 0.5s ease-in-out;
}
.carousel-item img {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    border-radius: 12px;
}
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.carousel-overlay h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.carousel-overlay p {
    font-size: 18px;
    max-width: 600px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.product-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: #f5f5f5;
    display: block;
}
.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(107, 209, 66, 0.2);
}
.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.product-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
.product-item p {
    font-size: 16px;
    margin-bottom: 10px;
}
.product-item .price {
    font-size: 18px;
    font-weight: 600;
    color: #6bd142;
}
footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(107, 209, 66, 0.2);
    z-index: 6;
}
footer p {
    font-size: 14px;
    color: #a0a0a0;
}
@media (max-width: 1024px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
    p { font-size: 16px; }
    .button { padding: 10px 25px; }
    .team-slideshow { max-width: 500px; }
    .home-logo { max-width: 250px; }
    .product-hero { height: 350px; }
    .carousel-overlay h2 { font-size: 28px; }
    .carousel-overlay p { font-size: 16px; }
    #home, #news, #services, #team, #contact, #products { background-size: 80px 80px; }
}
@media (max-width: 768px) {
    nav .container { justify-content: flex-start; }
    .nav-links { display: none; }
    #nav-menu { display: flex; }
    .logo { font-size: 24px; }
    .menu-icon { display: inline; }
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    section { padding: 60px 15px; }
    .button { padding: 8px 20px; font-size: 14px; }
    .news-grid, .services-grid, .team-grid, .products-grid { grid-template-columns: 1fr; }
    .team-member img { width: 120px; height: 120px; }
    .contact-form { padding: 20px; }
    .home-logo { max-width: 120px; }
    .product-hero { height: 300px; }
    #home, #news, #services, #team, #contact, #products { background-size: 60px 60px; }
}
@media (max-width: 480px) {
    .logo { font-size: 20px; }
    .menu-icon { width: 20px; height: 20px; }
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    p { font-size: 14px; }
    .contact-form input, .contact-form textarea { font-size: 14px; }
    .home-logo { max-width: 100px; max-height: 100px; }
    .product-hero { height: 250px; }
    .carousel-overlay h2 { font-size: 24px; }
    .carousel-overlay p { font-size: 14px; }
    .product-item img { height: 150px; }
    #home, #news, #services, #team, #contact, #products { background-size: 50px 50px; }
    .team-slideshow { max-width: 300px; font-size: 14px; }
}
@media (min-width: 769px) {
    #nav-menu {
        display: none !important;
    }
    .nav-links {
        display: flex !important;
    }
    .menu-icon {
        display: none !important;
    }
}