/* Reset and Base */
@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&family=Pacifico&display=swap');

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

:root {
    --primary: #1a1a1a;
    --secondary: #c4a37a;
    --accent: #e8d6c8;
    --light: #f8f5f2;
    --gray: #8a8a8a;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --radius: 12px;
}

body {
    font-family: "Asap", sans-serif;
    color: var(--primary);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: "Asap", sans-serif;
    font-weight: 600;
}

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

/* Header */
.site-header {
    padding: 15px 0 15px;
    position: sticky;
    top: 0;
    background-color: var(--light);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.header-search {
    position: relative;
}

.site-brand img {
     width: 70%;
}

.search-input {
    padding: 8px 34px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.search-input:focus {
    border-color: #000;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 14px;
    pointer-events: none;
}

.site-brand {
    position: relative;
    flex: 1;
}

.site-title {
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.site-title span {
    color: var(--secondary);
}

.site-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.site-title:hover::after {
    width: 100%;
}

.byline {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--gray);
    margin-top: 5px;
    text-transform: uppercase;
}

.main-heading p {
    font-family: "Pacifico", cursive;
    font-size: 18px;
    color: #5a5a5a;
}

/* Desktop Navigation - Hide on mobile */
.main-nav {
    display: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin-right: 30px;
}

.nav-item a {
    color: var(--primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-item a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-item a:hover {
    color: var(--secondary);
}

.nav-item a:hover::before {
    width: 100%;
}

/* Mobile Navigation Toggle - Always visible on mobile */
.mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Grid Container */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Card Base Styles */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Make cards responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 0;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 163, 145, 0.1);
    border-radius: 12px;
    padding: 10px;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-price {
    color: #E7A391;
    font-size: 14px;
    font-weight: 600;
    background: rgba(231, 163, 145, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.service-title {
    padding: 15px 25px 5px;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.service-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: #E7A391;
}

.service-description {
    padding: 0 25px 20px;
    flex-grow: 1;
}

.service-description p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: #E7A391;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.service-link:hover {
    background: #d8937e;
    gap: 12px;
}

.service-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Animation for card entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Mobile Menu Sidebar */
.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: white;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-sidebar.active {
    right: 0;
    overflow: visible;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Header */
.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light);
}

.mobile-menu-title {

    font-size: 20px;
    color: var(--primary);
}

.mobile-menu-title span {
    color: var(--secondary);
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    background: #000;
    position: absolute;
    top: 9%;
    left: -22px;
}

.close-menu-btn:hover {
    background-color: var(--accent);
}

/* Mobile Navigation */
.mobile-nav {
    padding: 20px 0 0px;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav .nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav .nav-item:last-child {
    border-bottom: none;
}

.mobile-nav .nav-item a {
    display: block;
    padding: 10px 15px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: unset;
    transition: var(--transition);
    position: relative;
}

.mobile-nav .nav-item a:hover {
    color: var(--secondary);
    background-color: var(--accent);
    padding-left: 35px;
}

.mobile-nav .nav-item a::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.mobile-nav .nav-item a:hover::before {
    width: 8px;
}

/* Mobile Search */
.mobile-search {
    padding: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--light);
}

.mobile-search .search-input {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 25px;
    border: 1px solid #ddd;
    outline: none;
    transition: var(--transition);
}

.mobile-search .search-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(196, 163, 122, 0.1);
}

/* Mobile Social Links */
.mobile-social-links {
    padding: 15px 20px;
    display: flex;
    gap: 15px;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: var(--secondary);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.mobile-social-link:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.post-content p {
    margin-bottom: 10px !important;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.additional-section {
    padding: 50px 0px;
    background: #fff;
}

/* Hero Section - Responsive Grid */
.hero-section {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: #f9f5f0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0;
    max-width: none;
    min-height: auto;
}

.hero-main-post {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 400px;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.hero-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    color: white;
}

.hero-main-badge {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-main-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: white;
}

.hero-main-excerpt {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.5;
    display: none;
}

.hero-main-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.hero-main-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    font-size: 11px;
}

.hero-main-readmore:hover {
    background-color: var(--secondary);
    color: white;
}

.hero-side-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hero-side-post {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.hero-side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.hero-side-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    color: white;
}

.hero-side-badge {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.hero-side-title {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 5px;
    color: white;
}

.hero-side-meta {
    font-size: 14px;
    opacity: 0.8;
}

/* Categories Section */
.categories-section {
    padding: 50px 0;
}

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

.section-title {
    font-size: 28px;
    position: relative;
    display: inline-block;
}

/* .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        } */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.category-icon {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 15px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    background-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.category-name {
    font-size: 18px;
    margin-bottom: 8px;
}

.category-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* Featured Posts */
.featured-posts-section {
    padding: 50px 0;
    background-color: rgba(255, 255, 255, 0.5);
}

.featured-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.post-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.post-card-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    object-position: top;
}

.post-card-content {
    padding: 20px;
}

.post-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.post-card-category {
    background-color: var(--accent);
    color: var(--secondary);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 12px;
}

.post-card-date {
    color: var(--gray);
}

.post-card-title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.post-card-excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.post-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-size: 12px;
    text-transform: uppercase;
    transition: var(--transition);
}

/* Articles Wrap */
.articles-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.posts-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.post-content.card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 100%;
}

.post-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.post-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 10px;
}

.post-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.post-excerpt p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 14px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

/* Sidebar */
.post-sidebar {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.category-list {
    list-style: none;
    margin-bottom: 30px;
}

.category-item {
    margin-bottom: 12px;
}

.category-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    font-size: 14px;
}

.category-item a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.category-item span {
    font-size: 11px;
    color: var(--gray);
    background-color: var(--accent);
    padding: 2px 8px;
    border-radius: 10px;
}

.recent-post {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h5 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-date {
    font-size: 12px;
    color: var(--gray);
}

/* Horizontal Scroll Section */
.luxury-spa-blog-scroll {
    padding: 30px 0;
    background: #fefefe;
}

.horizontal-scroll-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.horizontal-scroll-container:active {
    cursor: grabbing;
}

.horizontal-scroll-container::-webkit-scrollbar {
    display: none;
}

.horizontal-scroll-track {
    display: flex;
    gap: 25px;
    padding: 0 20px;
    margin-bottom: 20px;
    width: max-content;
}

.scroll-card {
    flex: 0 0 320px;
    min-width: 320px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.scroll-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.scroll-card .recent-post-img {
    height: 200px;
    min-height: 200px;
    width: 100%;
    overflow: hidden;
}

.scroll-card .recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scroll-card:hover .recent-post-img img {
    transform: scale(1.05);
}

.scroll-card .recent-post-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recent-post-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    background-color: var(--accent);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 20px;
}

.recent-post-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.3;
    color: var(--primary);
    flex-grow: 1;
}

.recent-post-excerpt {
    font-size: 14px;
    color: var(--gray);
    margin: 0 0 15px 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    line-height: 1.5em;
    max-height: calc(1.7em * 3);
}
.recent-post-meta {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 0px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.recent-post-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
    padding: 10px 0;
    margin-top: auto;
}

.recent-post-link:hover {
    color: var(--primary);
    gap: 12px;
}

.recent-post-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.recent-post-link:hover i {
    transform: translateX(4px);
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px auto;
    max-width: 300px;
}

.scroll-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.scroll-progress-fill {
    width: 20%;
    height: 100%;
    background: var(--secondary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    white-space: nowrap;
}

.scroll-hint i {
    animation: bounceRight 2s infinite;
}

@keyframes bounceRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

/* Scroll Navigation Arrows */
.scroll-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.scroll-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.scroll-nav-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.scroll-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: var(--gray);
    color: var(--gray);
}

.scroll-nav-btn:disabled:hover {
    background: white;
    color: var(--gray);
    transform: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .scroll-card {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .scroll-card .recent-post-img {
        height: 180px;
        min-height: 180px;
    }

    .recent-post-title {
        font-size: 16px;
    }

    .recent-post-excerpt {
        font-size: 13px;
    }

    .horizontal-scroll-track {
        gap: 20px;
        padding: 0 15px;
    }

    .scroll-hint {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .scroll-card {
        flex: 0 0 260px;
        min-width: 260px;
    }

    .scroll-card .recent-post-img {
        height: 160px;
        min-height: 160px;
    }

    .horizontal-scroll-track {
        gap: 15px;
        padding: 0 10px;
    }
    .hero-container {
        padding: 20px;
    }
}

@media (min-width: 992px) {
    .scroll-card {
        flex: 0 0 350px;
        min-width: 350px;
    }

    .scroll-card .recent-post-img {
        height: 220px;
        min-height: 220px;
    }

    .recent-post-title {
        font-size: 20px;
    }
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    font-size: 13px;
}

.view-all-button:hover {
    background-color: var(--secondary);
    color: white;
}

/* Footer */


/* Recent Posts Block Styles */
.recent_block {
    position: relative;
    padding: 30px 0;
    background: #fff;
}

.recent_post {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.recent_block .serif h3{
    margin-bottom: 0px;
}

@media (min-width: 768px) {
    .recent_post {
        grid-template-columns: repeat(2, 1fr);
    }
}

.editor_blog {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
    background: #f5f2ec;
    padding: 20px;
    border-radius: 25px;
    transition: var(--transition);
}

.editor_blog h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    line-height: 1.5em;
    max-height: calc(1.7em * 1);
}

@media (min-width: 768px) {
    .editor_blog {
        grid-template-columns: 160px 1fr;
    }
}

.editor_blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.editor_inner {
    border-radius: 20px;
    overflow: hidden;
    height: 160px;
}

.editor_inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    object-position: top;
}

.editor_blog span {
    background-color: var(--accent);
    color: var(--secondary);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-block;
}

.editor_blog h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary);
}

.editor_blog p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

/* Animation */
.brush {
    position: absolute;
    bottom: 0px;
    left: 0;
    animation: up-down 2s ease-in-out infinite;
    z-index: -1;
    opacity: 0.7;
}

.leaf_green {
    position: absolute;
    top: 0;
    right: 0;
    animation: up-down 2s ease-in-out infinite;
    z-index: -1;
    opacity: 0.7;
}

@keyframes up-down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.leaf_animation {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.leaf {
    position: absolute;
    top: 50px;
    right: 0px;
    animation: up-down 4s ease-in-out infinite;
}

.shape-two {
    position: absolute;
    right: 100px;
    top: 120%;
    transform: translateY(-50%);
    z-index: 10;
    animation: spin 15s linear infinite;
    /* Adjust time for speed */
}

/* Keyframes for continuous rotation */
@keyframes spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.towel {
    position: absolute;
    bottom: 50px;
    left: 0px;
    animation: up-down 3s ease-in-out infinite;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.single_post {
    background: #f5f2ec;
    padding: 80px 0px 0px;
    position: relative;
    background-image: url(/assets/img/banner-six-bg.jpg);
}

.single_post::after {
    background-image: url(/assets/img/section-shape-bottom.png);
    background-size: contain;
    content: '';
    width: 100%;
    height: 45px;
    position: absolute;
    bottom: 0px;
    z-index: 99;
}

.single_post::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 76px;
    background: url(/assets/img/section-shape-top.png) center top no-repeat;
}

.main_article {
    display: grid;
    gap: 30px;
    align-items: center;
    grid-template-columns: 650px 1fr;
}

.main_content .category {
    font-size: 12px;
    background: #c4a37a;
    border-radius: 50px;
    padding: 6px 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.main_content h3 {
    font-size: 52px;
    line-height: 70px;
    margin-bottom: 20px;
}

.main_content p {
    font-size: 16px;
    font-weight: 400;
}

.read_more {
    margin-top: 30px;
}

.read_more .view-all-button {
    color: #3e1225;
    border: 1px solid #3e1225;
}

.read_more .view-all-button:hover {
    color: #FFF;
    background: #3e1225;
    border: 1px solid #3e1225;
}

.animation .bottom_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.animation .green_leaf {
    position: absolute;
    left: 0;
    bottom: 50%;
    animation: up-down 3s ease-in-out infinite;
}

.animation .rotate_flower {
    position: absolute;
    left: 40%;
    top: 120px;
    animation: rotate 8s ease-in-out infinite;
}

.animation .rose_pallet {
    position: absolute;
    right: 3%;
    top: 20px;
    animation: floatBob 3s ease-in-out infinite;
}

.animation .bunch {
    position: absolute;
    bottom: -30px;
    left: 45%;
    animation: floatBob 3s ease-in-out infinite;
}

.main_content {
    z-index: 999;
}

.right_girl {
    z-index: 99;
    position: relative;
    animation: right-left 3s ease-in-out infinite;
}

.girl_bg {
    position: absolute;
    bottom: 0;
    z-index: 9;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes right-left {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-15px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes floatBob {
    0% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
        transform: translateY(10px) translateX(10px) rotate(5deg);
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
}

/* =========================================== */
/* MEDIA QUERIES - RESPONSIVE DESIGN */
/* =========================================== */

/* Media Queries for Tablets (768px and up) */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .site-title {
        font-size: 32px;
    }

    .byline {
        font-size: 12px;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 20px;
        height: 500px;
    }

    .hero-main-post {
        grid-row: 1 / span 2;
        grid-column: 1;
        height: 100%;
    }

    .hero-side-posts {
        grid-row: 1 / span 2;
        grid-column: 2;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 20px;
    }

    .hero-side-post {
        height: calc((500px - 60px) / 4);
    }

    .hero-main-title {
        font-size: 32px;
    }

    .hero-main-excerpt {
        display: block;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .featured-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .articles-wrap {
        grid-template-columns: 1fr 300px;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 50px;
    }
}

/* Media Queries for Desktop (992px and up) */
@media (min-width: 992px) {

    /* On Desktop: Show Desktop Navigation, Hide Mobile Toggle */
    .mobile-nav-toggle {
        display: none !important;
    }

    .main-nav {
        display: block !important;
    }

    .header-search {
        display: block !important;
    }

    .hero-container {
        height: 600px;
    }

    .hero-main-title {
        font-size: 42px;
    }

    .hero-side-posts {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .hero-side-post {
        height: calc((600px - 20px) / 2);
    }

    .categories-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .featured-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .post-card-image {
        height: 220px;
    }

    .scroll-card.horizontal {
        flex: 0 0 350px;
        min-width: 350px;
    }

    .scroll-card.horizontal .recent-post-img {
        height: 220px;
    }
}

/* On Mobile (below 992px): Show Mobile Toggle, Hide Desktop Navigation */
@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: flex !important;
        order: 3;
    }

    .main-nav {
        display: none !important;
    }

    .header-search {
        display: none !important;
    }

    .site-brand {
        order: 1;
        flex: 1;
    }
}

/* Media Queries for Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .hero-side-posts {
        grid-template-columns: 1fr 1fr;
    }

    .hero-side-post {
        height: calc((600px - 20px) / 2);
    }

    .featured-posts-grid {
        gap: 30px;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .site-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .byline {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .hero-main-post {
        border-radius: 10px;
    }
    .categories-section {
        padding: 20px 0;
    }

    .hero-main-overlay {
        padding: 20px;
    }

    .hero-main-title {
        font-size: 24px;
    }

    .hero-main-meta {
        gap: 8px;
    }

    .hero-side-posts {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-side-post {
        height: auto;
        border-radius: 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .post-card-image {
        height: auto;
    }


    .mobile-menu-sidebar {
        width: 280px;
        right: -280px;
    }

    .scroll-card.horizontal {
        flex: 0 0 260px;
        min-width: 260px;
    }

    .brush {
        width: 100px;
    }

    .leaf_green {
        width: 80px;
    }

    .recent_post {
        display: flex;
        flex-direction: column;
    }

    .editor_blog h3 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        line-height: 1.5em;
        max-height: calc(1.7em * 2);
    }

    .editor_inner {
        border-radius: 20px;
        overflow: hidden;
        height: auto;
    }

    .footer-links li {
        margin-bottom: 0px !important;
    }

    .footer-links {
        gap: var(--space-3);
    }

    .serif h3 {
        font-size: 18px !important;
    }

    .blog-section-two {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .blog-section-two .section-header .sub-title {
        display: none !important;
    }

    .blog-section-two .section-header {
        text-align: center;
        margin-bottom: 20px !important;
    }

    .recent_block {
        padding: 60px 0 20px;
    }

    .main_article {
        display: flex;
        flex-direction: column-reverse;
    }

    .main_article img {
        width: 100%;
    }

    .main_content h3 {
        font-size: 27px;
        line-height: normal;
        margin-bottom: 20px;
    }

    .girl_bg {
        position: absolute;
        top: 13%;
        z-index: 9;
        display: none;
    }

    .animation .bottom_bg {
        display: none;
    }

    .animation .bunch {
        left: 15%;
    }

    .single_post {
        background: #f5f2ec;
        padding: 80px 0px;
        position: relative;
        background-image: url(/assets/img/banner-six-bg.jpg);
    }

    .green_leaf {
        display: none;
    }

    .right_girl {
        animation: none;
    }

    .read_more {
        margin-top: 10px;
    }

    .animation .rose_pallet {
        position: absolute;
        right: 10%;
        top: -80px;
        display: none;
        animation: floatBob 3s ease-in-out infinite;
    }

    #news .serif {
        padding: 10px;
    }

    .shape-two,
    .leaf_animation {
        display: none;
    }
}

/* Very small screens (400px and below) */
@media (max-width: 400px) {
    .mobile-menu-sidebar {
        width: 260px;
        right: -260px;
    }

    .mobile-nav .nav-item a {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/*heading for editor's pick */
.section_header {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.section_title {
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;

}

.section_subtitle {
    font-size: 1.2rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Your existing H3 styles - keep these */
.serif h3 {
    font-size: 1rem;
    margin: 10px 0;
    color: #333;
}

/*Latest css */
/* Blog/News Section Two */
/* Blog Section - Horizontal Layout */
.blog-section-two {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}

.blog-section-two .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.blog-section-two .section-header .sub-title {
    font-size: 1.1rem;
    color: #E7A391;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.blog-section-two .section-header .title {
    font-size: 3rem;
    color: #222;
    font-weight: 700;
    margin: 0;

}

/* 3-column horizontal grid */
.blog-section-two .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    /* Adjust gutter */
}

.blog-section-two .col-md-6.col-xl-4 {
    padding: 0 15px;
    /* Adjust gutter */
}

/* Responsive grid: 3 columns on desktop, 2 on tablet, 1 on mobile */
@media (min-width: 1200px) {
    .blog-section-two .col-xl-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .blog-section-two .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .blog-section-two .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Blog Card Styling */
.blog-section-two .blog-block-two {
    height: 100%;
}

.blog-section-two .inner-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-section-two .inner-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-section-two .image {
    overflow: hidden;
    flex-shrink: 0;
}

.blog-section-two .image img {
    width: 100%;
    height: 216px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.blog-section-two .inner-box:hover .image img {
    transform: scale(1.08);
}

.blog-section-two .content {
    padding: 10px;
    flex-grow: 1;
    flex-direction: column;
}

.blog-section-two .inner-box .serif {
    padding: 0 12px 12px;
}

.blog-section-two .info {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-section-two .info span {
    display: inline-block;
}

.blog-section-two .info .dot {
    position: relative;
    padding-left: 15px;
}

.blog-section-two .info .dot::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: #E7A391;
    border-radius: 50%;
}

.blog-section-two .title {
    font-size: 1.2rem;
    color: #222;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-height: 1.5em;
    max-height: calc(1.7em * 2);
}

.blog-section-two .title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-section-two .title a:hover {
    color: #E7A391;
}

.blog-section-two p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 500;
    font-size: 14px;
}

.blog-section-two .readMore-btn {
    display: inline-flex;
    align-items: center;
    color: #E7A391;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-section-two .readMore-btn:hover {
    color: #d18a7a;
    transform: translateX(5px);
}

.blog-section-two .readMore-btn::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-section-two .readMore-btn:hover::after {
    transform: translateX(3px);
}

/* Ensure equal height for all cards */
.blog-section-two .row {
    display: flex;
    flex-wrap: wrap;
}

.blog-section-two .blog-block-two {
    display: flex;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .blog-section-two .section-header .title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .blog-section-two .image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .blog-section-two .section-header .title {
        font-size: 2.2rem;
    }

    .blog-section-two .image {
        height: 200px;
    }

    .blog-section-two .title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .blog-section-two .section-header .title {
        font-size: 1.8rem;
    }

    .blog-section-two .content {
        padding: 20px;
    }

    .blog-section-two .image {
        height: 180px;
    }

    .nav-brand img {
        width: 100%;
    }
}

.article-breadcrumb{font-size:14px;color:#777;margin-bottom:20px;display:flex;flex-wrap:wrap;align-items:center;gap:6px}.article-breadcrumb .breadcrumb-link{color:#111;text-decoration:none;transition:color 0.2s ease}.article-breadcrumb .breadcrumb-link:hover{color:#c0392b;text-decoration:underline}.article-breadcrumb .breadcrumb-separator{color:#aaa}.article-breadcrumb span:last-child{color:#555;font-weight:500;cursor:default}