/* ========== About Page Styles ========== */

/* Scoped About Page Styles */
.about-page .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #e6f2f7 0%, #c4e3f3 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.about-page .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="%23ffffff" fill-opacity="0.1"/></svg>')
        repeat;
    opacity: 0.1;
}

.about-page .hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.about-page .hero-title {
    font-size: 50px;
    font-weight: bold;
    padding-left: 100px;
    line-height: 1.1;
    color: #000;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #000, #333);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.about-page .about-us {
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.9;
    color: #000;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    mix-blend-mode: multiply;
    opacity: 0.8;
    letter-spacing: -2px;
    margin-bottom: 115px;
}

.about-page .person-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 165%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.9;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.about-page .about-section {
    padding: 8rem 5%;
    background: #fff;
}

.about-page .about-section h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    background: linear-gradient(45deg, #000, #333);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-page .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-page .step {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 70%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    display: inline-block;
    align-content: space-around;
}

.about-page .step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-page .step-icon {
    background: linear-gradient(#080808 0%, #000000 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.about-page .step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s ease;
}

/* Scoped idle styles */
/* .about-page .new-social-icons,
.about-page .new-social-icons a,
.about-page .new-social-icons img,
.about-page .step:hover .new-social-icons,
.about-page .step:hover .step-icon img:not(.new-social-icons img) {
} */
.about-page .step a {
    text-decoration: none;
    color: inherit;
}

.about-page .step h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

/* about-page .step style */

.about-page .social-media {
    background: linear-gradient(#131313 0%, #010101 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.2s;
}

.about-page .social-media:hover {
    transform: translateY(-2px);
}

.about-page .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0); */
    backdrop-filter: blur(0px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.about-page .popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.about-page .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.about-page .wrapper .icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
    width: 80px;
    height: 80px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    transform: scale(0);
}

.about-page .wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.about-page .wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.about-page .wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.about-page .wrapper .icon:hover span,
.about-page .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

/* Social icon hover effects */
.about-page .wrapper .facebook:hover,
.about-page .wrapper .facebook:hover .tooltip,
.about-page .wrapper .facebook:hover .tooltip::before {
    background: #1877f2;
    color: #ffffff;
}

.about-page .wrapper .twitter:hover,
.about-page .wrapper .twitter:hover .tooltip,
.about-page .wrapper .twitter:hover .tooltip::before {
    background: #0000002c;
    color: #000000;
}

.about-page .wrapper .instagram:hover,
.about-page .wrapper .instagram:hover .tooltip,
.about-page .wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #ffffff;
}

.about-page .wrapper .youtube:hover,
.about-page .wrapper .youtube:hover .tooltip,
.about-page .wrapper .youtube:hover .tooltip::before {
    background: #cd201f;
    color: #ffffff;
}

.about-page .wrapper .linkedin:hover,
.about-page .wrapper .linkedin:hover .tooltip,
.about-page .wrapper .linkedin:hover .tooltip::before {
    background: #0000002c;
    color: #000000;
}

.about-page .why-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-page .why-us-content {
    padding-right: 2rem;
}

.about-page .why-us h2 {
    font-size: 2.5rem;
    margin: 2rem;
    background: linear-gradient(45deg, #000, #333);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-page .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-page .features h3 {
    font-weight: bold;
    font-size: 25px;
}

.about-page .features p {
    font-size: large;
    font-style: oblique;
}

.about-page .feature {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-page .feature:hover {
    transform: translateY(-5px);
}

.about-page .artwork-display {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.about-page .artwork-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-page .artwork-display:hover .artwork-image {
    transform: scale(1.05);
}

.about-page .testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-page .testimonial {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-page .testimonial:hover {
    transform: translateY(-5px);
}

.about-page .testimonial-image {
    height: 200px;
    overflow: hidden;
}

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

.about-page .testimonial:hover .testimonial-image img {
    transform: scale(1.1);
}

.about-page .testimonial-content {
    padding: 2rem;
}

.about-page .testimonial-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #333;
}

.about-page .testimonial-author {
    font-weight: 600;
    font-size: 1rem;
    color: #000;
}

.about-page .newsletter-container {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    padding: 6rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-page .newsletter-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="%23ffffff" fill-opacity="0.1"/></svg>')
        repeat;
    opacity: 0.1;
}

.about-page .newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
    position: relative;
}

.about-page .newsletter-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
}

.about-page .newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.about-page .email-input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    max-width: 400px;
    transition: border-color 0.3s ease;
}

.about-page .email-input:focus {
    border-color: #000;
}

.about-page .subscribe-button {
    background: linear-gradient(45deg, #000, #333);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-page .subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .about-page .hero {
        padding: 2rem 5%;
        text-align: center;
    }

    .about-page .hero-title {
        font-size: 3rem;
    }

    .about-page .about-us {
        font-size: 5rem;
    }

    .about-page .person-image {
        width: 100%;
        height: 50%;
        top: 50%;
        clip-path: none;
    }

    .about-page .steps {
        grid-template-columns: 1fr;
    }

    .about-page .why-us {
        grid-template-columns: 1fr;
    }

    .about-page .features {
        grid-template-columns: 1fr;
    }

    .about-page .artwork-display {
        height: 300px;
    }

    .about-page .newsletter-form {
        flex-direction: column;
    }

    .about-page .email-input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-page .hero-title {
        font-size: 2.5rem;
        position: relative;
        bottom: 220px;
    }

    .about-page .about-us {
        font-size: 4rem;
    }

    .about-page .about-section h2 {
        font-size: 2rem;
    }

    .about-page .step-icon {
        width: 60px;
        height: 60px;
        border-radius: 30%;
    }
}

/* ==========End of About Page Styles ========== */

/* ========== Blog Page Styles ========== */

/* Active styles (in use) */

.blog-page .parallax-container {
    height: 60vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-page .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.blog-page .hero-content {
    text-align: center;
    z-index: 1;
    position: absolute;
    bottom: 100px;
    left: 40px;
    color: white;
}

.blog-page .hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-page .animated-bar {
    width: 100px;
    height: 4px;
    background: #fff;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.blog-page .animated-bar::after {
    content: "";
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #daa10f;
    animation: slide 2s infinite;
}

@keyframes slide {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .blog-page .hero-content h1 {
        font-size: 2.5rem;
    }
}

.blog-page .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.nav-left {
    max-width: 85%;
    overflow: hidden;
}

.category-scroll {
    overflow: hidden;
}

.blog-page .category-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.blog-page .category-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    flex-grow: 1;
    padding: 5px 0;
    overflow: hidden;
}

.blog-page .category-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    padding: 8px 12px;
    font-family: Arial, sans-serif;
    border-radius: 5px;
    transition: background 0.2s ease;
}

.blog-page .category-link.active {
    color: #000;
    font-weight: bold;
    background: #daa10f9c;
}

.blog-page .category-link:hover {
    background: #ddd;
}

.blog-page .scroll-btn {
    background: none;
    border: none;
    font-size: 15px;
    cursor: pointer;
    display: none;
    padding: 5px;
}

.blog-page .scroll-btn i {
    color: #333;
}

.blog-page .nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-page .sort-by {
    font-weight: 700;
    color: #222;
    font-size: 14px;
}

.blog-page .dropdown select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #eee;
    border-radius: 6px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    background: white;
    cursor: pointer;
    transition: border 0.2s ease;
}

.blog-page .dropdown select:hover {
    border-color: #ddd;
    background-color: #f8f8f8;
}

.blog-page .dropdown select:focus {
    outline: none;
    border-color: #ccc;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .blog-page .nav-container {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }

    .blog-page .nav-left {
        width: 85%;
    }

    .blog-page .category-container {
        justify-content: center;
    }

    .blog-page .category-scroll {
        overflow-x: scroll;
        padding-bottom: 5px;
    }

    .blog-page .scroll-btn {
        display: block;
    }

    .blog-page .sort-by {
        display: inline-block !important;
        font-size: 14px;
        min-width: 55px;
    }

    .blog-page .nav-right {
        display: flex;
        flex-direction: row !important;
        align-items: center;
    }

    .blog-page .dropdown select {
        width: auto;
    }
}

/* Unused/Idle styles commented out

.blog-page .grid-container { ... }
.blog-page .card { ... }
.blog-page .accommodation { ... }
.blog-page .article { ... }
.blog-page .title { ... }
.blog-page .subtitle { ... }
.blog-page .booking-btn { ... }
.blog-page .article-number { ... }
.blog-page .article-label { ... }
.blog-page .slide { ... }
.blog-page .indicator { ... }
.blog-page .slider-arrow.prev { ... }
.blog-page .slider-arrow.next { ... }
.blog-page .pagination-container { ... }

*/

/* ========== End Of Blog Page Styles ========== */

/* ========== Contact Page Styles ========== */

.contact-page * {
    text-decoration: none;
}

.contact-page .parallax-container {
    height: 60vh;
    background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.contact-page .hero-content {
    color: white;
    text-align: center;
    z-index: 1;
    position: absolute;
    left: 40px;
    color: white;
    bottom: 100px;
}

.contact-page .hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-page .animated-bar {
    width: 100px;
    height: 4px;
    background: #fff;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-page .animated-bar::after {
    content: "";
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #daa10f;
    animation: slide 2s infinite;
}

@keyframes slide {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.contact-page .contact-info {
    width: 100%;
    margin-bottom: 50px;
}

.contact-page .info-cards-container {
    display: flex;
    justify-content: center;
    margin-top: 3vh;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    text-decoration: none;
}

.contact-page .info-card {
    flex: 1 1 300px;
    max-width: 350px;
    width: 100%;
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgb(0 0 0);
    transition: transform 0.3s ease;
    text-decoration: none;
}

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

.contact-page .info-card .icon {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 15px;
}

.contact-page .info-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.contact-page .info-card p {
    color: #666;
}

.contact-page .contact-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-page .contact-form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgb(0 0 0);
}

.contact-page .centered-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-page .form-group {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
    width: 80%;
    padding: 15px;
    border: 1px solid #6c757d;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-page .submit-btn {
    width: 200px;
    padding: 15px;
    background: #4a90e2;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-page .info-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-page .info-card {
        flex: 1 1 100%;
        max-width: 90%;
    }

    .contact-page .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-page .form-group input,
    .contact-page .form-group textarea {
        width: 90%;
    }
}

/* ========== End Of Contact Page Styles ========== */

/* ========== Home Page Mid-Footer Styles ========== */
.home-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, sans-serif;
}

.home-page .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.home-page .card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    color: white;
}

.home-page .card img {
    opacity: 90%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-page .card-content {
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.home-page .comfort-zone {
    grid-column: 1;
    grid-row: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.home-page .comfort-zone .card-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
}

.home-page .accommodation {
    grid-column: 2;
    grid-row: 1/3;
}

.home-page .article {
    grid-column: 1;
    grid-row: 2;
}

.home-page .title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.2;
}

.home-page .subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.home-page .booking-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    color: black;
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    gap: 8px;
}

.home-page .article-number {
    font-size: 48px;
    font-weight: bold;
}

.home-page .article-label {
    font-size: 18px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .home-page .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 300px);
    }

    .home-page .comfort-zone .card-content {
        top: 34%;
    }

    .home-page .accommodation {
        grid-column: 1;
        grid-row: 2;
    }

    .home-page .article {
        grid-column: 1;
        grid-row: 3;
    }
}
/* ========== End Of Home Page Mid-Footer Styles ========== */

/* ========== Footer Styles ========== */

.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.brand-section {
    grid-column: 1 / 2;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 24px;
    border-radius: 50%;
    height: 24px;
    background: #fff;
}

.mission {
    color: #888;
    font-size: 14px;
    line-height: 1.5;
    max-width: 300px;
    padding: 0px 6px;
}

.footer-links {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h3 {
    font-size: 16px;
    margin: 0 0 8px 0;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
}

.newsletter {
    grid-column: 4 / 5;
}

.subscribe-form {
    padding: 15px 0px;
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.subscribe-form input {
    padding: 8px 12px;
    border-radius: 4px;
    border: none;
    background: #333;
    color: #fff;
    flex-grow: 1;
}

.subscribe-form button {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    background: #0061fa7d;
    color: #ffffff;
    cursor: pointer;
    font-weight: 500;
}

.social-icons {
    justify-content: center;
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* Makes the icon circular */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram {
    text-decoration: none;
}

.facebook {
    text-decoration: none;
}

.youtube {
    text-decoration: none;
}

.tiktok {
    text-decoration: none;
}

.twitter {
    text-decoration: none;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-section {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.legal-links {
    display: flex;
    gap: 5px;
}

.legal-links a {
    color: #888;
    text-decoration: none;
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
    .footer {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }

    .brand-section {
        grid-column: 1;
        justify-items: center;
    }

    .newsletter {
        grid-column: 1;
    }

    .bottom-section {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 10px;
    }

    .subscribe-form button {
        width: 100%;
        padding: 12px;
    }

    .subscribe-form input {
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 15px;
        gap: 25px;
    }

    .logo {
        font-size: 20px;
    }

    .mission {
        font-size: 13px;
        text-align: center;
    }

    .footer-links h3 {
        font-size: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .bottom-section {
        font-size: 12px;
        padding-top: 15px;
    }
}

/* Improved touch targets for mobile */
@media (hover: none) {
    .footer-links a,
    .legal-links a {
        padding: 8px 0;
        display: inline-block;
    }

    .social-icon {
        padding: 5px;
    }
}

/* Instagram */
.instagram {
    color: #e4405f;
}

/* Facebook */
.facebook {
    color: #1877f2;
}

/* YouTube */
.youtube {
    color: #ff0000;
}

/* TikTok */
.tiktok {
    color: #ece9e9;
    /* TikTok's logo is mainly black, but you can add a gradient */
}

/* Twitter (X) */
.twitter {
    color: #ece9e9;
    /* Twitter X uses black */
}

/* ========== End Of Footer Styles ========== */

/* ========== Header Styles ========== */

.slider-container {
    position: relative;
    width: 100%;
    height: 750px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    height: 100%;
    color: white;
    padding: 2rem 2rem;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category {
    display: inline-block;
    padding: 0.5rem 1rem;
    /* background: rgba(0,0,0,0.6); */
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.slide-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.slide-indicators {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    width: 9px;
    background: white;
}

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: -1;
}

/* New Arrow Styles */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.arrow-icon {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 6px;
}

.arrow-icon.right {
    transform: rotate(-45deg);
}

.arrow-icon.left {
    transform: rotate(135deg);
}

/* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, sans-serif;
} */

.header {
    background: #212529;
    position: fixed;
    height: fit-content;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    padding: 0px 27px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.logo img {
    width: 100px;
    height: 100px;
    /* padding: 20%; */
    filter: brightness(1.5);
    padding: 5%;
}

.transparent-logo {
    mix-blend-mode: screen;
    /* Removes black background */
    background: transparent;
    /* Ensures background is transparent */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #9c84247a;
}

.search-bar {
    /* display: flex;
        align-items: center; */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 10px 16px;
    width: 250px;
    /* height: 40px; */
}

.search-bar input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    color: rgb(255, 255, 255);
    font-size: 16px;
}

.search-bar input::placeholder {
    color: rgb(255, 255, 255);
}

.search-bar button {
    background: transparent;
    border: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
}

.search-bar button:hover {
    color: rgb(231, 231, 231);
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-select {
    display: flex;
    align-items: center;
    color: white;
    gap: 2px;
}

.auth-buttons {
    gap: 24px;
}

.login-btn {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.button-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.signup-btn {
    background: rgb(53, 51, 51);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #212529;
    padding: 15px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-content {
    position: absolute;
    bottom: 100px;
    left: 40px;
    color: white;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 300px;
    padding-left: 100px;
}

.hero-description {
    font-size: 16px;
    max-width: 500px;
    opacity: 0.9;
}

.author {
    /* position: absolute; */
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    color: white;
}

.author img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
}

.dots {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .slider-container {
        height: 600px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .user-actions {
        display: none;
    }

    .search-bar {
        width: 180px;
    }

    .mobile-menu {
        display: flex;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Will be replaced with a mobile menu */
    }

    .search-bar {
        width: 90%;
        margin: 10px auto;
    }

    .button-container {
        gap: 15px;
        margin-top: 10px;
    }

    .slider-container {
        height: 500px;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .arrow-icon {
        padding: 4px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        bottom: 60px;
    }

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

    .hero-description {
        font-size: 14px;
    }

    .author {
        position: static;
        margin-top: 15px;
    }

    .dots {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 400px;
    }

    .logo {
        margin-bottom: 0px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

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

    .slider-arrow {
        width: 32px;
        height: 32px;
    }

    .button-container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: stretch;
    }

    .signup-btn,
    .login-btn {
        text-align: center;
        padding: 10px;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 90%;
        left: 0;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        flex-direction: column;
        align-items: center;
        height: fit-content;
        overflow-y: auto;
        /* Enables vertical scrolling */
        scrollbar-width: thin;
        /* Firefox scrollbar */
        scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    }

    .nav-links::-webkit-scrollbar {
        width: 6px;
        /* Width of the scrollbar */
    }

    .nav-links::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.5);
        /* Scrollbar thumb color */
        border-radius: 10px;
    }

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

    .nav-links a {
        padding: 10px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .search-bar {
        order: 3;
        width: fit-content;
        margin: 10px 0;
    }

    .button-container {
        order: 4;
        width: 100%;
        justify-content: center;
    }
}

/* ===== END OF HEADER STYLES ===== */

/* ====== Main Styles ====== */

/* Mobile-first responsive styles */
@media (max-width: 768px) {
    .blog-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .grid {
        grid-template-columns: 1fr !important;
        padding: 10px;
    }

    .nav-container {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-left {
        overflow-x: auto;
        width: 85%;
        padding-bottom: 10px;
        margin-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .nav-right {
        width: 100%;
        justify-content: space-between;
    }

    .sort-by {
        display: none;
    }

    .dropdown {
        width: 100%;
    }

    .grid-container {
        padding: 10px;
        grid-template-rows: repeat(3, 250px);
        gap: 10px;
    }

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 14px;
    }

    .article-number {
        font-size: 36px;
    }

    .blog-meta {
        font-size: 12px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-description {
        font-size: 14px;
    }

    .author {
        font-size: 12px;
    }
}

/* Additional styles for extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .blog-card {
        margin-bottom: 15px;
    }

    .image-container {
        height: 200px;
    }

    .grid-container {
        grid-template-rows: repeat(3, 200px);
    }

    .booking-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* General responsive improvements */
.blog-card {
    transition: transform 0.3s ease;
    height: auto;
}

.image-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-wrapper {
    padding: 15px;
}

/* Touch-friendly improvements */
.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image:hover {
    transform: scale(1.05);
}

/* Fix for sticky hover on mobile */
@media (hover: none) {
    .blog-card:hover {
        transform: none;
    }

    .blog-image:hover {
        transform: none;
    }
}

/* Mobile-first responsive styles */
.blog-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    height: auto;
    width: 100%;
    transition: transform 0.3s ease;
}

.image-container {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    width: 100%;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    color: white;
    background: rgb(8 8 8 / 64%);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.content-wrapper {
    padding: 16px;
}

.blog-meta {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}
.fa-circle-check {
    background-color: #ffffff;
    border-radius: 50%;
    font-size: 35px;
    color: #308943;
    position: absolute;
    top: 12px;
    right: 12px;
}

.blog-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author {
    display: flex;
    align-items: center;
    /* gap: 8px; */
}

.author-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: flex;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    align-items: center;
    gap: 5px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 15px;
    }

    .blog-card {
        margin-bottom: 15px;
    }

    .content-wrapper {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .grid {
        padding: 10px;
        gap: 10px;
    }

    .blog-card {
        margin-bottom: 10px;
    }

    .image-container {
        padding-top: 66.67%;
        /* 3:2 aspect ratio for mobile */
    }

    .blog-title {
        font-size: 15px;
    }

    .blog-description {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

/* ========== End Of Main Styles ========== */

/* ========== Post Styles ========== */
.zoomable-image {
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.zoomable-image.zoomed {
    transform: scale(2);
    /* Adjust zoom level */
    cursor: zoom-out;
    z-index: 5;
    position: relative;
}

.more {
    text-decoration: underline;
}

a {
    /* color: #96c03d; */
    text-decoration: none;
}

/* -------------------------------- 

Basic Style

-------------------------------- */
.cd-breadcrumb,
.cd-multi-steps {
    width: 90%;
    max-width: 768px;
    padding: 0.5em 1em;
    margin: 1em auto;
    background-color: #edeff0;
    border-radius: 0.25em;
}
.cd-breadcrumb::after,
.cd-multi-steps::after {
    clear: both;
    content: "";
    display: table;
}
.cd-breadcrumb li,
.cd-multi-steps li {
    display: inline-block;
    /* float: left; */
    margin: 0.5em 0;
}
.cd-breadcrumb li::after,
.cd-multi-steps li::after {
    /* this is the separator between items */
    display: inline-block;
    content: "\00bb";
    margin: 0 0.6em;
    color: #959fa5;
}
.cd-breadcrumb li:last-of-type::after,
.cd-multi-steps li:last-of-type::after {
    /* hide separator after the last item */
    display: none;
}
/* ========== End Of Post Styles ========== */
