@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yellowtail&display=swap');

/*

.menuoculto {
    opacity: 0;
}

.menutopfixed {}


.menutopfixed ._menu {
    position: relative;
    margin: 0px;
}

nav.desktop ._menu ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
  float:right;
  margin-top:20px;
  background-color:#5a4942;
}

nav.desktop ._menu ul li {
    position: relative;
    float: left;
}

nav.desktop ._menu  ul li a {
    display: block;
    height: 70px;
    line-height: 70px;
    color: #fff;
    font-size: 18px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 300;
  text-decoration:none;
}

nav.desktop ._menu ul li a:hover {
    color: #000;
    background: none;
    background-color: #fff;
}



nav.desktop ul._menu  li.current a {
    color: #000;
    background-color: #fff;
}

nav.desktop ul._menu  li.item-108 a  {
    background-color: #fc7404;
    color: #fff;
  margin-top:25px;
    height: 50px;
    line-height: 50px;
  margin-left:20px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;  
}

nav.desktop ul._menu  li button{
  display:none;
}

nav.desktop ul._menu  li ul {
    position: absolute;
  left:0px;
    z-index: 2;
    padding: 0px;
    top: 100px;
    border-left: #ccc solid 1px;
    border-right: #ccc solid 1px;
    border-bottom: #ccc solid 1px;
}

nav.desktop ul._menu  li:hover ul {
    left: 0px;
  display:block;
}

nav.desktop ul._menu  li ul li {
    position: relative;
}

nav.desktop ul._menu li ul li a {
    width: 220px;
    background-color: #fff;
    color: #333;
    height: 30px;
  font-size:16px;
    line-height: 30px;
    border-top: #f0f0f0 solid 1px;
    text-transform: none;
}

nav.desktop ul._menu  li ul li a:hover {
    background: none;
    background-color: #f0f0f0;
    color: #ec8827;
    text-decoration: none;
}
nav.desktop ul._menu  li ul li ul{
    position: absolute;
  left:0px;
    z-index: 2;
    padding: 0px;
    top: 30px;
    border-left: #ccc solid 1px;
    border-right: #ccc solid 1px;
    border-bottom: #ccc solid 1px;
}
nav.desktop ul._menu li ul li ul li a {
    width: 350px;
    background-color: #fff;
    color: #333;
    height: 30px;
  font-size:16px;
    line-height: 30px;
    border-top: #f0f0f0 solid 1px;
    text-transform: none;
}
nav.desktop ul._menu  li span {
    width: 350px;
    background-color: #fff;
    color: #333;
    height: 30px;
  font-size:16px;
    line-height: 30px;
    padding-left: 20px;
    padding-right: 20px;
    border-top: #f0f0f0 solid 1px;
    text-transform: none;
  display:block;
}
a {
    transition: all 0.20s linear;
    -webkit-transition: all 0.20s linear;
    -moz-transition: all 0.20s linear;
    color: #000;
}

a:hover {
    transition: all 0.20s linear;
    -webkit-transition: all 0.20s linear;
    -moz-transition: all 0.20s linear;
    color: #666;
}
*/
        /* CSS Variables */

:root {
            --primary-color: #19D3C5;
            --text-color: #2B2D42;
            --accent-color: #FF6F61; /* Gold/Tan accent */
            --bg-light: #FFF8F2;
            --bg-gray: #164863;
            --white: #ffffff;
            --font-heading: 'Yellowtail', cursive;
            --font-body: 'Nunito', sans-serif;
            --transition: all 0.3s ease;
        }

        /* Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Nunito', sans-serif;
            color: #4a4a4a;
            line-height: 1.6;
            background-color: #ffffff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            color: #1a1a1a;
            font-weight: 600;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-padding {
            padding: 100px 0;
        }

        /* Highlight Word */
        .highlight {
            color: #22C7B8;
            font-style: normal;
          font-weight:normal;
          font-size:64px;
            font-family: 'Yellowtail', cursive;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .btn-white {
            background-color: #ffffff;
            color: #1a1a1a;
        }

        .btn-white:hover {
            background-color: var(--accent-color);
            color: #ffffff;
        }

        .btn-dark {
            background-color: #1a1a1a;;
            color: #ffffff;
        }

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

        .btn-outline {
            background-color: transparent;
            border-color: #1a1a1a;
            color: #1a1a1a;
        }

        .btn-outline:hover {
            background-color: #1a1a1a;
            color: var(--white);
        }

        /* Navbar */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            padding: 20px 0;
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }

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

        .logo {
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 1px;
        }

        header.scrolled .logo {
            color: #1a1a1a;
        }

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

        .nav-links a {
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
        }

        header.scrolled .nav-links a {
            color: #1a1a1a;
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        .auth-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .auth-buttons a {
            font-size: 14px;
        }
        
        header.scrolled .auth-buttons a {
            color: #1a1a1a;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 600px;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('../../../images/glamping-kalomai-travel.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-content {
            max-width: 650px;
            color: var(--white);
        }

        .hero-content h1 {
            color: var(--white);
            font-size: 56px;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 40px;
            font-weight: 300;
        }

        /* Features Section */
        .features {
            background-color: var(--bg-light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .features-images {
            position: relative;
            height: 450px;
        }

        .feat-img-1 {
            width: 70%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
            position: absolute;
            top: 0;
            left: 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .feat-img-2 {
            width: 60%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            position: absolute;
            bottom: 20px;
            right: 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 10px solid var(--bg-light);
        }

        .features-content h2 {
            font-size: 42px;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .features-content > p {
            margin-bottom: 40px;
            font-size: 15px;
        }

        .features-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .feature-item h4 {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--primary-color);
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .feature-item h4 i {
            color: var(--accent-color);
        }

        .feature-item p {
            font-size: 13px;
            color: #777;
        }

        .corporate-box {
            margin-top: 40px;
            background-color: #f0f4f8;
            padding: 20px;
            border-left: 4px solid var(--accent-color);
            font-size: 14px;
        }

        /* Categories Section */
        .categories {
            background-color: var(--white);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 42px;
            max-width: 500px;
            line-height: 1.2;
        }

        .section-header p {
            max-width: 300px;
            font-size: 14px;
        }

        .categories-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 20px;
            scrollbar-width: none; /* Firefox */
        }
        
        .categories-scroll::-webkit-scrollbar {
            display: none; /* Chrome */
        }

        .category-card {
            min-width: 220px;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

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

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

        .category-card .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(transparent 50%, rgba(0,0,0,0.8));
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .category-card h3 {
            color: var(--white);
            font-family: var(--font-body);
            font-weight: 500;
            font-size: 18px;
        }

        /* Destinations Section */
        .destinations {
            background-color: var(--bg-gray);
        }

        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
        }

        .filter-tabs button {
            background: none;
            border: none;
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--text-color);
            cursor: pointer;
            padding-bottom: 10px;
            position: relative;
        }

        .filter-tabs button.active {
            color: var(--primary-color);
            font-weight: 600;
        }

        .filter-tabs button.active::after {
            content: '';
            position: absolute;
            bottom: -11px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent-color);
        }

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

        .dest-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

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

        .dest-img {
            height: 250px;
            position: relative;
        }

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

        .badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: rgba(255,255,255,0.9);
            padding: 5px 10px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: 4px;
            color: var(--primary-color);
        }

        .dest-info {
            padding: 25px;
        }

        .dest-info h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .dest-info .location {
            font-size: 13px;
            color: #777;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dest-tags {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .dest-tags span {
            font-size: 12px;
            background-color: var(--bg-gray);
            padding: 4px 10px;
            border-radius: 20px;
        }

        .dest-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #eee;
            padding-top: 20px;
        }

        .price {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-color);
        }

        .price span {
            font-size: 12px;
            font-weight: 400;
            color: #777;
        }

        /* Steps Section */
        .steps {
            background-color: var(--white);
            text-align: center;
        }

        .steps h2 {
            font-size: 42px;
            max-width: 600px;
            margin: 0 auto 60px;
            line-height: 1.2;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            text-align: left;
        }

        .step-item {
            padding: 30px;
            background-color: var(--bg-light);
            border-radius: 8px;
            border: 1px solid #eee;
        }

        .step-num {
            font-family: var(--font-heading);
            font-size: 48px;
            color: var(--accent-color);
            opacity: 0.5;
            margin-bottom: 15px;
            line-height: 1;
        }

        .step-item h4 {
            font-family: var(--font-body);
            font-size: 18px;
            margin-bottom: 10px;
        }

        .step-item p {
            font-size: 14px;
            color: #666;
        }

        /* Benefits Section */
        .benefits {
            background-color: var(--bg-gray);
        }

        .benefits h2 {
            font-size: 36px;
            margin-bottom: 50px;
        }

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

        .benefit-card {
            background-color: var(--white);
            padding: 30px 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
        }

        .benefit-card i {
            font-size: 24px;
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        .benefit-card h4 {
            font-family: var(--font-body);
            font-size: 14px;
            margin-bottom: 10px;
        }

        .benefit-card p {
            font-size: 12px;
            color: #777;
        }

        /* Contact Section */
        .contact {
            background-color: #f9f8f6; /* Very light beige */
            position: relative;
        }

        .contact-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text h2 {
            font-size: 42px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .contact-text p {
            margin-bottom: 30px;
            font-size: 15px;
        }

        .contact-form {
            flex: 1;
            background-color: var(--white);
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-row .form-group {
            flex: 1;
            margin-bottom: 0;
        }

        .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary-color);
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: var(--font-body);
            font-size: 14px;
            outline: none;
            transition: var(--transition);
        }

        .form-group input:focus, .form-group select:focus {
            border-color: var(--accent-color);
        }

        .contact-form .btn {
            width: 100%;
            margin-top: 10px;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: var(--white);
            text-align: center;
        }

        .testimonials h2 {
            font-size: 36px;
            margin-bottom: 50px;
        }

        .testi-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .testi-card {
            background-color: var(--bg-light);
            padding: 40px;
            border-radius: 8px;
            text-align: left;
            position: relative;
            border: 1px solid #eee;
        }

        .testi-card::before {
            content: '"';
            font-family: var(--font-heading);
            font-size: 80px;
            color: var(--accent-color);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
            line-height: 1;
        }

        .testi-card p {
            font-size: 15px;
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

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

        .testi-author h5 {
            font-family: var(--font-body);
            font-size: 14px;
            margin-bottom: 2px;
        }

        .testi-author span {
            font-size: 12px;
            color: #777;
        }

        /* Bottom CTA */
        .bottom-cta {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1527004013197-933c4bcc61f4?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            padding: 120px 0;
            text-align: center;
            color: var(--white);
        }

        .bottom-cta h2 {
            color: var(--white);
            font-size: 48px;
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.2;
        }
        
        .bottom-cta p {
            margin-bottom: 40px;
            font-size: 16px;
        }

        /* Footer */
        footer {
            background-color: #111;
            color: #fff;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-about .logo {
            color: var(--white);
            display: block;
            margin-bottom: 20px;
        }

        .footer-about p {
            color: #aaa;
            font-size: 14px;
            max-width: 300px;
        }

        .footer-col h4 {
            font-family: var(--font-body);
            font-size: 16px;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #aaa;
            font-size: 14px;
        }

        .footer-col ul li a:hover {
            color: var(--accent-color);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #777;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: #aaa;
            font-size: 16px;
        }

        .social-links a:hover {
            color: var(--accent-color);
        }

/*********************************************************************************************************/

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 1030px) {

}

@media only screen and (max-width: 979px) {

    .menuoculto {
        opacity: 1;
        filter: alpha(opacity=100);
        transition: all 0.20s linear;
        -webkit-transition: all 0.20s linear;
        -moz-transition: all 0.20s linear;
    }
  nav.desktop ._menu {
    display:none;
  }

              .features-grid, .contact-container {
                grid-template-columns: 1fr;
                flex-direction: column;
            }
            .destinations-grid, .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .features-images {
                height: 350px;
                margin-bottom: 30px;
            }
}

@media only screen and (max-width: 767px) {
            .nav-links, .auth-buttons {
                display: none; /* In a real project, add a hamburger menu */
            }
            .hero-content h1 {
                font-size: 40px;
            }
            .destinations-grid, .steps-grid, .testi-grid {
                grid-template-columns: 1fr;
            }
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .form-row {
                flex-direction: column;
                gap: 0;
            }
  
}

@media only screen and (max-width: 640px) {

  
}