
/* font family */

.noto-serif {
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
}

/* Some style */
#always {
    font-size: 65px;
    font-weight: 900;
}

#fresh {
    font-size: 65px;
    font-weight: 900;
    color: #013328;
}

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

body {
    font-family: 'Noto Serif', 'Inter', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #F5F8FF;
}

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

.btn {
    display: inline-block;
    background-color: #013328;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    padding: 10px 20px;
    width: 100%;
    height: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Navbar Styles */
.navbar {
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #F5F8FF;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    max-width: 200px;
}

.menu {
    display: flex;
    gap: 48px;
}

#home {
    color: black;
    font-weight: 900;
}

.menu a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
    transition: color 0.3s;
}


/* Banner Styles */
.banner {
    padding: 200px 0px 120px 0px;
    margin-top: 80px;
}

.banner .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.banner-content {
    flex: 1;
}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    object-position: right bottom;
}

.banner h1 {
    font-size: 2.5rem;
}

.banner p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.shop-now-btn {
    display: inline-block;
    background-color: #013328;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 15px 30px;
    width: auto;
    height: auto;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(1, 51, 40, 0.3);
}

.shop-now-btn:hover {
    background-color: #025a45;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 51, 40, 0.4);
}

/* Plants Card Section Styles */
.plants {
    padding: 120px 0;
    text-align: center;
}
#fresh-text{
    color: #013328;
}

.plan-title {
    font-size: 50px;
}

.subtitle {
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.plant-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    overflow: hidden;
    transition: transform 0.3s;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

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

.card img {
    width: 100%;
}

.card h3 {
    font-size: 1.2rem;
}

.price {
    font-weight: bold;
    color: black;
    margin: 10px 0;
}

/* Plant Badge Section Styles */
.plant-lover {
    padding: 60px 0;
}

.plant-lover .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.plant-lover-image {
    flex: 1;
    position: relative;
}

.trusted-badge img {
    position: absolute;
    height: 286px;
    width: 286px;
    top: -100px;
    right: -100px;
}

.plant-lover-content {
    flex: 1;
}

.plant-lover-content h2 {
    color: black;
    font-size: 50px;
}

.plant-lover-content ul {
    color: rgba(0, 0, 0, 0.5);
    margin-left: 30px;
}

/* Latest Deal Section  */

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.section-title span {
    color: #013328;
}

.section-title p {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 10px auto 0;
}



/* Reviews Section Styles */
.reviews {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.review-card h4 {
    color: #013328;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.review-card p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.map-container {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

.contact-info {
    flex: 1;
    padding: 20px 0;
}

.contact-info h2 {
    color: #013328;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: left;
}

.contact-details p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #333;
}

.contact-details a {
    color: #013328;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Join Section Styles */
.join {
    padding: 170px 0;
    background-image: url('assets/news-letter-bg.png');
    background-size: cover;
    height: 535px;
    background-position: center;
    text-align: center;
}

.join h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.subscribe {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.subscribe input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.subscribe button {
    background-color: #013328;
    height: 50px;
    width: 185px;
    color: #fff;
}
.btn-s{
    border: none;
    font-size: 1rem;
    font-weight: 800;
    background-color: #013328;
}
/* Footer Styles */
.footer {
    padding: 60px 0 0;
    margin-bottom: 20px;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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


.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
#footer-description{
    color: rgba(0, 0, 0, 0.5);
}

.link-group-icon{
    display: flex;
    justify-items: center;
    gap: 20px;
}

.social-link {
    display: inline-block;
    padding: 8px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.link-group {
    flex: 1;
    min-width: 150px;
}

.link-group h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.link-group a {
    display: block;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    margin-bottom: 30px;
    transition: color 0.3s;
}


/* Responsive Styles */

/* Destop device */
@media (max-width: 1000px) {
    .menu {
        display: none;
    }

    .banner .container,
    .plant-lover .container {
        flex-direction: column;
    }

    .banner-image {
        order: -1;
        margin-bottom: 15px;
        background: linear-gradient(135deg, rgba(1, 51, 40, 0.9) 0%, rgba(2, 90, 69, 0.9) 100%), 
                    url('assets/flower-store.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 15px;
        padding: 0;
        box-shadow: 0 5px 20px rgba(1, 51, 40, 0.3);
        position: relative;
        min-height: 250px;
        display: flex;
        align-items: stretch;
        justify-content: stretch;
        flex-direction: row;
        gap: 0;
        width: 100%;
    }
    
    .banner-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(1, 51, 40, 0.7) 0%, rgba(2, 90, 69, 0.7) 100%);
        border-radius: 20px;
        z-index: 1;
    }
    
    .banner-image img {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 350px;
        height: 200px;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.3);
    }
    
    .mobile-only {
        display: none;
    }
    
    .banner-image img {
        width: 100%;
        max-width: 400px;
        height: 300px;
        object-fit: cover;
        object-position: center;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }

    .plant-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .trusted-badge {
        display: none;
    }

    .footer .container {
        flex-direction: column;
    }
}


/* Mobile device */
@media (max-width: 576px) {
    .banner {
        padding: 40px 0;
    }
    
    .plant-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        align-items: stretch;
    }
    
    .plant-cards .card {
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 280px;
    }
    
    .plant-cards .card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 8px 8px 0 0;
    }
    
    .plant-cards .card h3 {
        font-size: 14px;
        line-height: 1.3;
        margin: 10px 0 8px 0;
        flex-grow: 1;
        display: flex;
        align-items: center;
        text-align: center;
        padding: 0 5px;
    }
    
    .plant-cards .card .price {
        font-size: 16px;
        font-weight: bold;
        margin: 0;
        padding: 8px 5px;
        text-align: center;
    }
    
    .plant-lover {
        padding: 40px 0;
    }
    
    .reviews {
        padding: 40px 0;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    #always, #fresh{
        font-size: 40px;
    }
    .right-card{
        width: 365px;
        margin: 0 auto;
        height: 300px;
    }

    .subscribe {
        flex-direction: row;
    }

    .subscribe input {
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .subscribe button {
        width: 100%;
        height: 42px;
    }
    .btn{
        width: 100%;
        text-align: center;
        color: #fff;
        font-weight: 700;
    }
    .plant-lover-content h2{
        font-size: 30px;
    }
    .footer-links{
        flex-direction: column;
    }
    
    .banner-image {
        margin: 0;
        padding: 0;
        flex-direction: row;
        gap: 0;
        border-radius: 15px;
        overflow: hidden;
        width: 100%;
        height: 200px;
        position: relative;
        z-index: 1001;
    }
    
    .banner-image img {
        flex: 1;
        width: 50%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        display: block;
        position: relative;
        z-index: 1002;
    }
    
    .banner-image img:first-child {
        border-radius: 15px 0 0 15px;
    }
    
    .banner-image img:last-child {
        border-radius: 0 15px 15px 0;
    }
    
    .mobile-only {
        display: block;
    }
    
    .banner-content {
        padding: 0 15px;
        text-align: center;
        background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
        border-radius: 15px;
        padding: 20px 15px;
        margin: 10px 5px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .banner h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .banner p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 15px;
        color: #333;
    }
    
    .shop-now-btn {
        box-shadow: 0 5px 15px rgba(1, 51, 40, 0.3);
        transform: translateY(0);
        transition: all 0.3s ease;
    }
    
    .shop-now-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(1, 51, 40, 0.4);
    }
    
    .contact-block {
        flex-direction: column;
        gap: 30px;
    }
    
    .map-container {
        order: -1;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .map-container iframe {
        width: 100% !important;
        height: 300px;
        border-radius: 15px;
    }
    
    .contact-info h2 {
        text-align: center;
        font-size: 1.8rem;
    }
    
    .contact-section .container {
        padding: 0 10px;
    }
    
    .contact-block {
        margin: 0;
        padding: 0;
    }
}
