/*
*******************************************
*******************************************

** - Default CSS
** - Navbar CSS
** - Side Navbar CSS

*******************************************
*******************************************
*/


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Josefin Sans", sans-serif;
    font-family: "Bree Serif", serif;
}

html {
    scroll-behavior: smooth;
}

:focus {
    outline: 0 !important;
}

a {
    text-decoration: none;
}

/* Section Title */

.title-design {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.title-design img {
    width: 70px;
    height: 50px;
    padding-right: 10px;
}

.title-design h2 {
    color: goldenrod;
    font-size: 30px;
}

/* Underline Image */
.title-underline {
    display: flex;
    justify-content: center;
}

.title-underline img {
    width: 80px;
    height: 6px;
    margin-top: -30px;
    margin-left: 80px;
}

/* =====================  Navbar =========================*/

#Navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 999;
    background-color: rgb(250, 246, 241);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.website-name {
    display: flex;
    align-items: center;
}

.logo-style {
    color: #000;
    font-size: 30px;
    padding-top: 10px;
    color: #3b1f0d;
    font-family: "Bree Serif", serif;
    font-weight: 800;
    font-style: normal;
}

.navbar-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-menu ul {
    display: flex;
    padding-top: 23px;
    column-gap: 30px;
}

.navbar-menu button {
    border: none;
    outline: none;
    text-decoration: none;
    font-size: 18px;
    text-shadow: 1px 1px 2px #000;
    background-color: tomato;
    color: gold;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 4px;
}

.navbar-menu button:hover {
    background-color: transparent;
    border: 2px solid tomato;
    color: tomato;
    text-shadow: none;
}

.navbar-item {
    display: flex;
    align-items: center;
}

.navbar-menu ul a {
    text-decoration: none;
    color: #3b1f0d;
    font-size: 20px;
    position: relative;
    padding: 0 10px;
    font-weight: 600;
    font-family: 'Georgia', serif;
}

.navbar-menu ul a:after {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, #5c483c, rgb(211, 187, 51), gold);
    height: 4px;
    width: 0;
    left: 0;
    bottom: -5px;
    transition: width 0.4s ease-in-out;
    border-radius: 50px;
    box-shadow: 0 0 5px #ffa41b88;
}

.navbar-menu ul a:hover:after {
    width: 100%;
}

.navbar-menu ul a li {
    list-style: none;
}

.navbar-menu-toggle {
    display: none;
    font-size: 30px;
    font-weight: bold;
    color: black;
    text-shadow: 0.5px 0.5px 1px #000;
}

@media screen and (max-width: 1260px) {
    .navbar-menu-toggle {
        display: block;
    }

    .navbar-menu {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .logo-style {
        font-size: 23px;
    }

    .add-cart {
        width: 33px;
        height: 33px;
    }

    .add-cart i {
        font-size: 15px;
    }

    .cart-count {
        width: 16px;
        height: 16px;
    }
}

/* =====================  Side Navbar  =========================*/

.side-navbar {
    position: fixed;
    width: 260px;
    height: 100%;
    top: 0;
    right: -100%;
    padding: 20px;
    transition: 2s;
    z-index: 9999;
    /*
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/bg-img/side-navbar.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: rgb(250, 246, 241);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-left: 3px solid #3b1f0d;
}

.side-navbar-link {
    margin-bottom: 30px;
    margin-top: 30px;
}

.side-navbar-links p {
    display: flex;
    align-items: center;
    height: 40px;
    background-color: transparent;
    padding: 0 20px;
    border-radius: 10px;
    cursor: pointer;

}

.side-navbar-links a {
    text-decoration: none;
    cursor: pointer;
    font-size: 20px;
    color: #3b1f0d;
    font-family: "Bree Serif", serif;
    font-weight: 800;
    font-style: normal;
}

.side-navbar-links p i {
    font-size: 15px;
    padding-right: 10px;
    color: goldenrod;
}

.side-navbar-links a:hover {
    color: goldenrod;
}

.cross-symbol {
    color: red;
    text-align: right;
    font-size: 20px;
    cursor: pointer;
}

.side-navbar-links a button {
    border: none;
    outline: none;
    text-decoration: none;
    font-size: 18px;
    text-shadow: 1px 1px 2px #000;
    background-color: tomato;
    color: gold;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 4px;
}

.side-navbar-links a button:hover {
    background-color: transparent;
    border: 2px solid tomato;
    color: tomato;
    text-shadow: none;
}

/* =====================  Home Header  =========================*/

.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: relative;
    width: 33.33%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
}

.text-content {
    flex: 1;
    max-width: 600px;
}

.text-content h4 {
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 20px;
    font-family: "Overpass", sans-serif;
    font-family: "Are You Serious", cursive;
    font-weight: 400;
    font-style: normal;
}

.text-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.text-content p {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    border-radius: 12px;
}

.btn-explore {
    background-color: #ffc107;
    color: #1a1a1a;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-explore:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #e0a800;
    cursor: pointer;
    user-select: none;
    z-index: 3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.arrow-left {
    left: 30px;
}

.arrow-right {
    right: 30px;
}

/* Dots */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #d4af37;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
}

.slide-1 {
    background-image: url(../img/home/header-img4.jpg);
}

.slide-2 {
    background-image: url(../img/home/header-img5.jpg);
}

.slide-3 {
    background-image: url(../img/home/header-img6.jpg);
}

@media screen and (max-width: 992px) {
    .slider-container {
        height: 90vh;
    }

    .slide-content {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }

    .text-content,
    .image-content {
        max-width: 100%;
    }

    .slide-content .image-content {
        order: -1;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }

    .slide-content .text-content {
        order: 1;
    }

    .text-content h4,
    .text-content h1,
    .text-content p,
    .text-content a,
    .text-content button {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .btn-explore {
        display: block;
        margin: 0 auto;
        text-decoration: none !important;
        outline: none !important;
    }

    .image-content img {
        max-height: 300px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .text-content h1 {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {

    .text-content h1 {
        font-size: 2.5rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .image-content img {
        max-height: 200px;
    }

    .arrow {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .arrow-left {
        left: 10px;
    }

    .arrow-right {
        right: 10px;
    }

    .slide-content .image-content {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 480px) {

    .text-content h1 {
        font-size: 1.8rem;
    }

    .text-content p {
        font-size: 0.9rem;
    }

    .btn-explore {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .arrow {
        display: none;
    }

    .image-content img {
        max-height: 200px;
    }

    .dots-container {
        bottom: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .slide-content .image-content {
        margin-bottom: 12px;
    }
}

/* =====================  About Section  =========================*/

.about-section {
    background: transparent;
}

.about-img {
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-content h4 {
    color: #f0c32f;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    /*text-shadow: 1px 1px 1px #000;*/
}

.about-content h2 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #3b1f0d;
    font-family: "Bree Serif", serif;
}

.about-content p {
    color: #000;
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
}

.btn-learn {
    margin-top: 20px;
    background: #d4af37;
    border: none;
    color: #111;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background: #fff;
    color: #000;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

#readMoreBtn {
    animation: fadeIn 0.5s ease-in-out;
    border: none !important;
    outline: none !important;
    background-color: transparent;
    font-size: 15px;
    font-weight: 800;
    text-align: start;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {

    .about-section {
        padding: 60px 20px;
        text-align: start;
    }
}

@media (max-width: 768px) {
    .about-img {
        margin-bottom: 30px;
    }

    .about-content {
        text-align: center;
    }

    #readMoreBtn {
        text-align: start !important;
    }
}

/* =====================  Our Process Section  ===================== */

#our-process-section {
    color: #333;
    line-height: 1.7;
    padding: 60px 0;
}

.our-process-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1rem;
    color: #666;
}

.our-process-timeline {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.our-process-step {
    flex: 1 1 300px;
    max-width: 380px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(99, 99, 99, .2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeInUp .6s ease-out forwards;
    transition: transform .4s ease, box-shadow .4s ease;
}

.our-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(99, 99, 99, .25);
}

.our-process-icon {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff, #f8f9fa);
}

.our-process-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-process-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.our-process-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: #1a1a1a;
}

.our-process-step-desc {
    font-size: .95rem;
    color: #555;
    margin-bottom: 16px;
    flex: 1;
}

.our-process-highlight {
    align-self: center;
    background: linear-gradient(90deg, #fff8e1, #fff0b3);
    color: #b8860b;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(184, 134, 11, .2);
    transition: all .3s ease;
    cursor: pointer;
}

.our-process-highlight:hover {
    background: linear-gradient(90deg, #ffd700, #f9e79f);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, .3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.our-process-step:nth-child(1) {
    animation-delay: .2s;
}

.our-process-step:nth-child(2) {
    animation-delay: .4s;
}

.our-process-step:nth-child(3) {
    animation-delay: .6s;
}

.our-process-step:nth-child(4) {
    animation-delay: .8s;
}

/* =====================  Our Highlights Section  ===================== */

.highlights-section {
    overflow: hidden;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 40px;
    flex-wrap: wrap;
}

.highlight-text {
    flex: 1;
    min-width: 300px;
}

.highlight-text h4 {
    color: #b8860b;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-text h3 {
    font-weight: 600;
    font-size: 1.8rem;
    color: #4b3b05;
    margin-bottom: 20px;
}

.highlight-text p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: justify;
}

.highlight-img {
    flex: 1;
    min-width: 300px;
    height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease;
}

.highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.highlight-img:hover img {
    transform: scale(1.1);
}

.highlight-item:nth-child(even) {
    flex-direction: row-reverse;
}

.fade-slide {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.fade-slide.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .highlight-item {
        flex-direction: column !important;
        text-align: center;
    }

    .highlight-text h3 {
        font-size: 1.5rem;
    }

    .highlight-img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .highlight-heading h2 {
        font-size: 2rem;
    }

    .highlight-item {
        margin-bottom: 50px;
    }
}

/* =====================  Our Highlights Section  ===================== */

.stories-header {
    margin-bottom: 32px;
}

.stories-header h2 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.stories-sub {
    color: #6b6b74;
}

.story-card {
    background: linear-gradient(180deg, #ffffff, #fbfaf8);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(19, 20, 22, 0.06);
    overflow: hidden;
    transition: transform 400ms cubic-bezier(.2, .9, .25, 1), box-shadow 300ms;
    border: 1px solid rgba(15, 15, 20, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.story-media {
    position: relative;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(255, 244, 230, 0.6), rgba(255, 250, 245, 0.4));
}

.story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms ease;
}

.story-card:hover .story-media img {
    transform: scale(1.08) rotate(-0.5deg);
}

.story-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.story-title {
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.story-meta {
    font-size: 0.85rem;
    color: #8a8783;
    margin-bottom: 12px;
}

.story-desc {
    flex: 1;
    color: #4b4b50;
    font-size: 0.95rem;
}

.badge-anim .badge {
    color: #b8860b;
}

.story-footer {
    padding: 12px 18px;
    border-top: 1px dashed rgba(100, 100, 110, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pill {
    background: linear-gradient(90deg, #fff8e1, #fff0b3);
    color: #b8860b;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
}

.stories-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.stories-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dcdce0;
    cursor: pointer;
}

.stories-dot.active {
    background: #b8860b;
    box-shadow: 0 4px 10px rgba(184, 134, 11, 0.16);
}

.badge-anim {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.badge-anim .badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(20, 20, 25, 0.06);
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    transform-origin: center center;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-6px) rotate(-1deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.corner-anim {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 68px;
    height: 68px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
}

.corner-anim svg {
    transform-origin: center;
    animation: spinTiny 8s linear infinite;
}

@keyframes spinTiny {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(18, 18, 20, 0.10);
}

@media (max-width: 992px) {
    .story-media {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .story-media {
        height: 180px;
    }

    .stories-section {
        padding: 36px 0;
    }

    .story-title {
        font-size: 1rem;
    }
}

@media (max-width: 420px) {
    .story-media {
        height: 150px;
    }

    .story-body {
        padding: 14px;
    }

    .corner-anim {
        width: 50px;
        height: 50px;
    }
}

.muted {
    color: #7a787c;
}

/* =====================  Hero Section  ===================== */

.hero-section {
    height: 65vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* =====================  About Page CSS  ===================== */

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: #D4AF37;
}

.service-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-box {
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 16px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .counter {
        font-size: 2rem;
    }
}




::-webkit-scrollbar {
    display: none;
}

::placeholder {
    color: #000 !important;
    opacity: 1;
}

/*

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #002b40;
    border-radius: 10px;
}*/

:root {
    scroll-padding-top: 80px;
}