﻿/* ===== Layout Fix ===== */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

/* Push footer down */
.main-content {
    flex: 1;
}

/* ===== Navbar ===== */
.navbar {
    z-index: 1000;
}
.navbar-light .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: green;
}
.navbar-light .navbar-brand:hover {
    font-size: 1.5rem;
    font-weight: 800;
    color: darkgreen;
}
    /* hover effect */
    .navbar-light .navbar-nav .nav-link:hover {
    background-color: green;
    color: white !important;
}
/* Hover */
.navbar-nav .nav-link:hover {
    background: green;
    color: white !important;
    border-radius: 5px;
}
.navbar-nav .nav-link {
    white-space: nowrap;
}
/* dropdown hover */
.dropdown-menu .dropdown-item:hover {
    background-color: green;
    color: white !important;
}

/* Submenu */
.dropdown-submenu {
    position: relative;

}

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
        
    }

/* Desktop hover */
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}
/*.dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;*/ /* consistent spacing */
/*}*/
/* ===== Hero Carousel ===== */
/*.hero-wrapper {
    width: 100%;
    height: 750px;
    
    display: flex;
    justify-content: center;
    align-items: center;
}*/
.hero-slide {
    height: 90vh;
    width:100%;

  /*  min-height: 400px;*/
    /*border-radius: 12px;*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-position: center top; /* 👈 key line */
}
/* Optional overlay text (if you add later) */
/*.carousel-caption {
    background: rgba(0,0,0,0.35);
    padding: 15px;
    border-radius: 8px;
}*/
/* ===== Footer ===== */
.footer-main {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    color: white;
    padding: 40px 0;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
}

    .footer-links a:hover {
        color: #7dd87d;
    }
/* Align contact labels */
.footer-main b {
    display: inline-block;
    width: 90px;
}
/* Align labels */
.contact-info .label {
    display: inline-block;
    width: 90px;
    font-weight: bold;
}

/* Card styling */
.video-card {
    border: 1px solid #ddd; /* light border */
    border-radius: 1rem; /* <-- this adds rounded corners */
    background-color: #fff;
    transition: transform 0.2s;
}

    .video-card:hover {
        transform: translateY(-5px);
    }
.card-title {
    font-weight: 600;
    margin-top: 0.5rem;
}
/* Video container inside the card */
.video-container {
    background-color: #f9f9f9;
    padding: 0.5rem;
    border-radius: 0.75rem; /* rounded corners for the video itself */
}
.section-title-wrapper {
    /* optional: keep it aligned with navbar */
}

.section-line {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    width: 4px; /* thickness of the line */
    height: 2.5rem; /* matches the text height */
    background-color: green;
    border-radius: 2px; /* rounded ends for subtle effect */
}

.section-title {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: green;
    /*background: linear-gradient(90deg, #0d6efd, #6610f2);*/
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
    text-align: center;
    /*    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);*/
}

.highlight-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

    .highlight-card:hover {
        transform: translateY(-5px);
    }

    .highlight-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .highlight-card h6 {
        font-weight: 600;
        margin: 0;
    }

    /* Featured bigger card */
    .highlight-card.featured h4 {
        font-weight: 700;
    }

/* Accordion header */
.accordion-button {
    font-weight: 600;
    color: green;
}

    /* Active (opened) header */
    .accordion-button:not(.collapsed) {
        background-color: green;
        color: white;
    }

    /* Remove default blue shadow */
    .accordion-button:focus {
        box-shadow: none;
    }

/* Accordion body */
.accordion-body {
    background-color: #f9f9f9;
}

/* Sub section (Primary, Middle, High) */

.section-sub {
    margin-left: 1rem; /* indent the whole block */
    display: flex;
    align-items: center; /* vertical alignment of line + text */
}

    /* The green vertical line */
    .section-sub .section-line {
        display: inline-block;
        width: 4px; /* thickness of the line */
        height: 2rem; /* height of the line */
        background-color: green; /* line color */
        border-radius: 2px; /* rounded ends */
        margin-right: 0.5rem; /* spacing between line and text */
    }

    /* The section title text */
    .section-sub .section-title {
        font-size: 1.3rem;
        margin: 0; /* reset default margin */
    }
.container p {
    line-height: 1.7;
}

.container h6 {
    font-weight: 600;
    color: green;
}
/*.container ul {
    padding-left: 1.2rem;
}

.container li {
    margin-bottom: 0.3rem;
}*/
.brand-highlight {
    color: green;
    font-weight: 650;
}
.justify-text {
    text-align: justify;
}
    .justify-text ul {
        padding-left: 1.2rem;
    }

    .justify-text li {
        margin-bottom: 0.3rem;
    }

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: 0.25s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-5px);
    }

/* Image */
.product-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

/* Content */
.product-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.9rem;
    color: #555;
    flex-grow: 1;
}

/* Price */
.product-price {
    font-weight: 700;
    color: green;
}

/* Button */
.add-to-cart {
    border-radius: 20px;
}
/* Song list spacing */
.song-list {
    padding-left: 0;
    margin-bottom: 0;
}

.song-item {
    font-size: 0.9rem;
}

/* Audio player smaller */
.song-player {
    height: 30px; /* Reduce height */
    min-width: 150px; /* Optional: keep a minimum width */
}

/* Download button smaller */
.audio-download-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    height: 30px; /* Align with audio player */
    line-height: 1;
}
/*.section-underline {
    width: 80px;*/ /* short accent bar */
    /*height: 4px;
    background-color: #0d6efd;*/ /* match navbar color */
    /*margin-top: 0.5rem;
    border-radius: 2px;
}*/
/*html {
  font-size: 14px;
  height:100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {*/
    /*margin-bottom: 60px;*/
    /*margin-bottom: 120px;*/
    /*height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}
.footer {*/
    /*position: absolute;
    bottom: 0;*/
    /*width: 100%;
    white-space: nowrap;*/
    /*line-height: 60px;*/
    /*background-color: green;
    padding: 35px 0;
    min-height: 100px;
    text-align: center;
    color: #fff;
}
.footer-main {
    background-color: darkgreen;
    color: white;
    padding: 40px 0 20px 0;
}

    .footer-main h5 {
        margin-bottom: 15px;
        font-weight: 600;
    }

    .footer-main p {
        font-size: 14px;
        line-height: 1.6;
    }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #ddd;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: #7dd87d;
        }

.social-icons a {
    display: inline-block;
    margin-right: 12px;
    color: #ddd;
    text-decoration: none;
}

    .social-icons a:hover {
        color: #7dd87d;
    }

.footer-bottom {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}*//*.navbar-nav .nav-link {
    padding: 8px 14px;
}*/
/* Top navbar hover */
/*.navbar-light .navbar-nav .nav-link:hover {
    background-color: green;
    color: white !important;
}*/

/* When hovering the whole menu item */
/*.navbar-light .navbar-nav .nav-item:hover > .nav-link {
    background-color: green;
    color: white !important;
}*/

/* Dropdown items */
/*.dropdown-menu .dropdown-item:hover {
    background-color: green;
    color: white !important;
}*/
/* =========================
   NAVBAR HOVER STYLE
========================= */

/* Top menu hover */
/*.navbar-light .navbar-nav .nav-link:hover {
    background-color: green;
    color: white !important;
}*/

/* Dropdown item hover */
/*.dropdown-menu .dropdown-item:hover {
    background-color: green;
    color: white !important;
}*/

/* Remove bootstrap blue when clicked */
/*.dropdown-item:active,
.dropdown-item.active {
    background-color: green !important;
    color: white !important;
}*/


/* =========================
   DROPDOWN OPEN ON HOVER
========================= */

/*.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}*/


/* =========================
   MULTI LEVEL MENU
========================= */

/* position second level */
/*.dropdown-submenu {
    position: relative;
}*/

    /* second level menu */
    /*.dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
    }*/

    /* show second level on hover */
    /*.dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }*/


/* =========================
   SMALL UI IMPROVEMENTS
========================= */

/*.navbar-nav .nav-link {
    padding: 8px 14px;
    border-radius: 4px;
}

.dropdown-item {
    border-radius: 3px;
}
.navbar-nav .nav-link {
    white-space: nowrap;
}
.hero-slide {
    height: 100vh;*/ /* full screen */
    /*background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 10px;
}*/

/* Optional: Carousel caption style */
/*.carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.carousel-caption p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.navbar-light .navbar-brand {
    color: darkgreen;*/ /* your desired color, e.g., green */
    /*font-weight:bold;
}
.display-4{
    color:green;
}
.page-header {
    width: 100%;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: white;
    padding: 60px 20px;*/
    /*padding: 80px 20px;*/
    /*border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.page-header-content {
    max-width: 1140px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.page-header p {
    margin-top: 10px;
    font-size: 1.2rem;
    opacity: 0.9;
}*/
/*.page-header {
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: white;
    padding: 50px 0;
    margin-bottom: 40px;
}

    .page-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .page-header p {
        margin-top: 10px;
        font-size: 1.2rem;
        opacity: 0.9;
    }*/
/*.section-title {
    margin-bottom: 25px;
    font-weight: 600;
    border-left: 5px solid #2e7d32;
    padding-left: 10px;
}
.section-block {
    margin-bottom: 50px;
}
.video-card {
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}

    .video-card:hover {
        transform: translateY(-5px);
    }

    .video-card h5 {
        margin-top: 10px;
        font-size: 1rem;
    }
.container {
    max-width: 1140px;
}*/