@font-face {
    font-family: "Lora";
    src: url("fonts/Lora/Lora-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    background: linear-gradient(135deg, #f9e8d9 0%, #f5f7e9 100%);
    color: #2f2e2e;
    line-height: 1.6;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    color: #d4a373;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s, transform 0.3s;
}

.nav-links a:hover {
    color: #d4a373;
    transform: translateY(-2px);
}

.burger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
}

.no-scroll {
    overflow: hidden;
}

.section {
    padding: 80px 0;
}
.section-top{
    padding-top: 130px;
}
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #d4a373, #e9c46a);
    color: #2f2e2e;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

footer {
    background: #2f2e2e;
    color: #fff;
    padding: 50px 0;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-column a {
    color: #d4a373;
    text-decoration: none;
}

/* Index Page Styles */
.hero {
    height: 100vh;
    max-height: 1200px;
    display: flex;
    align-items: center;
    background: url('image/banner3.webp')top center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px;
    color: #fff;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    max-width: 600px;
}

.bloom-story {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: fadeInUp 1s ease-out;
}

.bloom-story img {
    width: 50%;
    min-height: 250px;
    border-radius: 20px;
    transition: transform 0.5s;
}

.bloom-story img:hover {
    transform: scale(1.03);
}

.bloom-story-text {
    width: 50%;
}

.slider {
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 100%;
    position: relative;
}

.slider-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    animation: fadeIn 1s ease-in;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.slider-controls button {
    background: #d4a373;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    color: #fff;
}

.accordion {
    margin: 40px 0;
}

.accordion-item {
    margin-bottom: 10px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #d4a373;
    color: #fff;
}

.accordion-content {
    padding: 20px;
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
}

.why-matter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.why-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.why-card:hover {
    transform: scale(1.05);
}

.why-card i {
    font-size: 2rem;
    color: #d4a373;
    margin-bottom: 15px;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.seasonal-item {
    position: relative;
    text-align: center;
}

.seasonal-item img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

.seasonal-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

.contact-form {
    background: #fff;
    max-width: 800px;
    margin: 30px auto 0 auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #d4a373;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #e9c46a;
}
.contact-form label{
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.contact-form label input{
    width: auto;
    margin: 0;
}
.contact-form button {
    background: linear-gradient(45deg, #d4a373, #e9c46a);
    border: none;
    padding: 15px 30px;
    color: #2f2e2e;
    cursor: pointer;
    border-radius: 50px;
    transition: transform 0.3s;
}

.contact-form button:hover {
    transform: scale(1.05);
}

/* Blooms Page Styles */
.bloom-journey {
    display: flex;
    align-items: center;
    gap: 40px;
}

.bloom-journey img {
    width: 50%;
    min-height: 300px;
    border-radius: 20px;
    transition: transform 0.5s;
}

.bloom-journey img:hover {
    transform: scale(1.03);
}

.bloom-journey-text {
    width: 50%;
}

.parallax-section {
    background: url('image/parallax.webp') center/cover fixed;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.parallax-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 20px;
}

.bloom-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.tip-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tip-card i {
    font-size: 2rem;
    color: #d4a373;
    margin-bottom: 15px;
}

.bloom-timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.timeline-item img {
    width: 40%;
    min-height: 250px;
    border-radius: 10px;
}

.timeline-content {
    width: 60%;
}

.bloom-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: scale(1.05);
}

.bloom-inspiration {
    background: linear-gradient(45deg, #d4a373, #e9c46a);
    padding: 60px 0;
    color: #2f2e2e;
    text-align: center;
}
.section p {
    margin-bottom: 15px;
}

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 20px;
        }

        .review-card {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: left;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

         h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .rating {
            color: #d4a373;
            margin-bottom: 10px;
        }

        .rating i {
            font-size: 1rem;
        }

        .review-text {
            font-style: italic;
            color: #555;
        }
/* Catalog Page Styles */
.catalog-intro {
    text-align: center;
    padding: 250px 0 200px 0;
    background: url(image/banner2.webp) top center / cover no-repeat;
}

.catalog-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.featured-bloom {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}

.featured-bloom img {
    width: 50%;
    min-height: 300px;
    border-radius: 20px;
    transition: transform 0.5s;
}

.featured-bloom img:hover {
    transform: scale(1.03);
}

.featured-bloom-text {
    width: 50%;
}

.bloom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.bloom-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bloom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bloom-card img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.bloom-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.bloom-card .price {
    color: #d4a373;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.bloom-guide {
    background: #fff;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.bloom-guide ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bloom-guide li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bloom-guide i {
    color: #d4a373;
}

.bloom-pairing {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pairing-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.pairing-item img {
    min-height: 250px;
    width: 40%;
    border-radius: 10px;
}

.pairing-content {
    width: 60%;
}

.bloom-occasions {
    display: grid;
    margin-top: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.occasion-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.occasion-card:hover {
    transform: scale(1.05);
}

.occasion-card i {
    font-size: 2rem;
    color: #d4a373;
    margin-bottom: 15px;
}

.bloom-showcase {
    text-align: center;
}

.bloom-showcase img {
    width: 100%;
    max-width: 800px;
    min-height: 250px;
    border-radius: 20px;
    margin: 0 auto 20px;
}

.bloom-faq {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 10px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.faq-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #d4a373;
    color: #fff;
}

.faq-content {
    padding: 20px;
    display: none;
}

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

/* Gift & Delivery Page Styles */
.gift-intro {
    text-align: center;
    padding: 250px 0 200px 0;
    background: url(image/banner.webp) center / cover no-repeat;
}

h1, h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.gift-highlight {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    animation: fadeInUp 1s ease-out;
}

.gift-highlight img {
    min-height: 250px;
    width: 50%;
    border-radius: 20px;
    transition: transform 0.5s;
}

.gift-highlight img:hover {
    transform: scale(1.03);
}

.gift-highlight-text {
    width: 50%;
}

.gift-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.gift-option {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gift-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gift-option img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.gift-option .price {
    color: #d4a373;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.delivery-process {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.process-item img {
    width: 40%;
    border-radius: 10px;
}

.process-content {
    width: 60%;
}

.gift-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: scale(1.05);
}

.benefit-card i {
    font-size: 2rem;
    color: #d4a373;
    margin-bottom: 15px;
}

.gift-tips {
    background: linear-gradient(45deg, #d4a373, #e9c46a);
    padding: 60px 0;
    color: #2f2e2e;
    text-align: center;
}

.gift-tips ul {
    list-style: none;
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
}

.gift-tips li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gift-tips i {
    color: #2f2e2e;
}
.privacy, .terms{
    padding: 80px 10px;
}
.privacy-content,
.terms-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    margin-top: 80px;
}

.privacy-content h1,
.terms-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #d4a373;
}

.privacy-content h3,
.terms-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.privacy-content p,
.terms-content p {
    margin-bottom: 20px;
}

.privacy-content ul,
.terms-content ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-content li,
.terms-content li {
    margin-bottom: 10px;
    position: relative;
}

.privacy-content li:before,
.terms-content li:before {
    content: '🌸';
    position: absolute;
    left: -20px;
}

.thanks{
    height: 100vh;
}
.thanks-section {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
    text-align: center;
}

.thanks-section h1 {
    font-size: 2.5rem;
    color: #d4a373;
    margin-bottom: 20px;
}

.thanks-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #2f2e2e;
        padding: 20px;
    }

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

    .burger {
        display: block;
    }

    .bloom-story,
    .bloom-journey,
    .featured-bloom,
    .gift-highlight {
        flex-direction: column;
    }

    .bloom-story img,
    .bloom-story-text,
    .bloom-journey img,
    .bloom-journey-text,
    .featured-bloom img,
    .featured-bloom-text,
    .gift-highlight img,
    .gift-highlight-text {
        width: 100%;
    }

    .timeline-item,
    .pairing-item,
    .process-item {
        flex-direction: column;
    }
    .timeline-mobile{
        flex-direction: column-reverse;
    }

    .timeline-item img,
    .timeline-content,
    .pairing-item img,
    .pairing-content,
    .process-item img,
    .process-content {
        width: 100%;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }
    h1, h2 {
        font-size: 2rem;
    }

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

    .thanks-section {
        padding: 40px 20px;
    }

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

    .thanks-section p {
        font-size: 1rem;
    }
    .container{
        padding: 0 10px;
    }
    .privacy-content,
    .terms-content, .contact-form, .hero-overlay  {
        padding: 30px 20px;
    }
    .slider-text{
        width: 80%;
    }
}