@import "./bootstrap.min.css";

@font-face {
   font-family: "Aeonik";
   src: url("../fonts/Aeonik-Regular.woff2") format("woff2"), url("../fonts/Aeonik-Regular.woff") format("woff");
   font-weight: normal;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: "Aeonik";
   src: url("../fonts/Aeonik-Light.woff2") format("woff2"), url("../fonts/Aeonik-Light.woff") format("woff");
   font-weight: 300;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: "Aeonik";
   src: url("../fonts/Aeonik-Bold.woff2") format("woff2"), url("../fonts/Aeonik-Bold.woff") format("woff");
   font-weight: bold;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: "Aeonik";
   src: url("../fonts/Aeonik-RegularItalic.woff2") format("woff2"), url("../fonts/Aeonik-RegularItalic.woff") format("woff");
   font-weight: normal;
   font-style: italic;
   font-display: swap;
}

@font-face {
   font-family: "Simula";
   src: url("../fonts/Simula-Book.woff2") format("woff2"), url("../fonts/Simula-Book.woff") format("woff");
   font-weight: normal;
   font-style: normal;
   font-display: swap;
}

.fontRegular {
   font-family: "Aeonik", Aeonik-Regular-fallback;
   font-weight: 400 !important;
}

.fontBold {
   font-family: "Aeonik", Aeonik-Regular-fallback;
   font-weight: bold !important;
}

.fontSimula {
   font-family: "Simula", Simula-Book-fallback;
   font-weight: 400 !important;
   letter-spacing: 1px;
}

/* font-family: "Simula", Sans-serif; */
:root {
   --primary-blue: #4A90E2;
   --light-blue: #B8E0F5;
   --dark-gray: #2c3e50;
   --dark-green: #344E41;
   --light-green: #588157;
   --parrot-green: #DEEED3;
}

body {
   font-family: "Aeonik", Aeonik-Regular-fallback, sans-serif;
   background-color: #f9f9f9;
   color: var(--dark-gray);
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

.line-clamp3 {
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 3;
   overflow: hidden;
}

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

.header {
   background-color: transparent;
   padding: 1rem 0;
   position: fixed;
   top: 0;
   width: 100%;
   z-index: 1000;
   backdrop-filter: blur(10px);
   transition: all 0.3s ease;
}

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


.nav-link {
   color: var(--dark-green);
   font-weight: 500;
   padding: 0.5rem 1rem;
   transition: color 0.3s ease;
   display: inline-block;
}

.nav-link:hover {
   color: var(--light-green);
}

.contactNavLink {
   background-color: transparent;
   color: var(--dark-green);
   border-radius: 25px;
   font-size: 18px;
   letter-spacing: 0.5px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   /* box-shadow: 0 4px 15px rgba(77, 77, 77, 0.3); */
   transition: all 0.3s ease;
   border: 1px solid var(--dark-green);
}

.contactNavLink:hover {
   background: linear-gradient(180deg, var(--dark-green), var(--light-green));
   color: #ffffff !important;
   transform: translateY(-2px);
}

.dropdown-toggle::after {
   margin-left: 0.5rem;
}

.brand-logo {
   display: flex;
   align-items: center;
   text-decoration: none;
   color: var(--dark-gray);
   font-weight: bold;
   font-size: 1.2rem;
   justify-content: center;
}

.brand-logo .logo-icon {
   background-color: var(--dark-gray);
   color: white;
   width: 40px;
   height: 40px;
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 0.5rem;
}

.country-selector {
   display: flex;
   align-items: center;
   background: none;
   border: none;
   color: var(--dark-gray);
   font-weight: 500;
}

.search-btn {
   background-color: var(--dark-green);
   border: none;
   color: white;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
}

.search-btn:hover {
   background-color: #357abd;
}

/* Left Side Modal Styles */
.left-modal {
   position: fixed;
   top: 0;
   left: -100%;
   width: 0px;
   height: 100vh;
   background: white;
   z-index: 1050;
   transition: left 0.3s ease;
   box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
   overflow-y: auto;
}

.left-modal.show {
   left: 0;
   width: 720px;
}

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

.modal-overlay.show {
   opacity: 1;
   visibility: visible;
}

.modal-header-custom {
   padding: 1.5rem;
   border-bottom: 1px solid #dee2e6;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.close-btn {
   background: none;
   border: none;
   font-size: 1.5rem;
   color: #6c757d;
}

.modal-tabs {
   border-bottom: 1px solid #dee2e6;
}

.modal-tabs .nav-link {
   color: #6c757d;
   border: none;
   border-bottom: 2px solid transparent;
   border-radius: 0;
}

.modal-tabs .nav-link.active {
   color: var(--primary-blue);
   border-bottom-color: var(--primary-blue);
   background-color: transparent;
}

.tab-content-area {
   padding: 1.5rem;
}

.content-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
   margin-bottom: 2rem;
}

.content-item {
   padding: 1rem;
   border: 1px solid #e9ecef;
   border-radius: 8px;
   text-decoration: none;
   color: var(--dark-gray);
   transition: all 0.3s ease;
}

.content-item:hover {
   background-color: #f8f9fa;
   border-color: var(--primary-blue);
   color: var(--primary-blue);
   text-decoration: none;
}

.content-item h6 {
   margin-bottom: 0.5rem;
   font-weight: 600;
}

.content-item p {
   margin: 0;
   font-size: 0.9rem;
   color: #6c757d;
}

.content-item:hover p {
   color: #5a6268;
}

/* Search Modal Styles */
.search-modal {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   background-color: rgba(229, 229, 229, 0.95);
   z-index: 1060;
   display: none;
   align-items: center;
   justify-content: center;
   backdrop-filter: blur(2px);
}

.search-modal.show {
   display: flex;
}

.search-modal-content {
   text-align: center;
   max-width: 600px;
   width: 90%;
   padding: 2rem;
}

.search-close-btn {
   position: absolute;
   top: 2rem;
   right: 2rem;
   background: none;
   border: none;
   font-size: 2rem;
   color: #666;
   cursor: pointer;
   z-index: 1070;
}

.search-close-btn:hover {
   color: #333;
}

.search-title {
   font-size: 3rem;
   color: #333;
   margin-bottom: 2rem;
   font-weight: 300;
   line-height: 1.2;
}

.search-input-container {
   position: relative;
   margin-bottom: 3rem;
   max-width: 500px;
   margin-left: auto;
   margin-right: auto;
}

.search-input {
   width: 100%;
   padding: 1rem 1.5rem;
   font-size: 1.1rem;
   border: 2px solid #ddd;
   border-radius: 8px;
   outline: none;
   transition: border-color 0.3s ease;
   background-color: white;
}

.search-input:focus {
   border-color: var(--primary-blue);
}

.search-suggestions {
   text-align: center;
   margin-top: 2rem;
}

.search-suggestions h6 {
   color: #666;
   font-size: 1rem;
   margin-bottom: 1.5rem;
   font-weight: 500;
}

.popular-searches {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   justify-content: center;
}

.search-tag {
   background-color: rgba(139, 139, 139, 0.3);
   color: #555;
   padding: 0.7rem 1.5rem;
   border-radius: 25px;
   text-decoration: none;
   font-size: 0.9rem;
   transition: all 0.3s ease;
   border: 1px solid transparent;
}

.search-tag:hover {
   background-color: rgba(139, 139, 139, 0.5);
   color: #333;
   text-decoration: none;
   transform: translateY(-1px);
}

/* Login/ Register Modal */
.authModal .modal-content {
   border: none;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   overflow: hidden;
}

.authModal .modal-header {
   background: linear-gradient(180deg, var(--dark-green), var(--light-green));
   padding: 20px;
   border: none;
   color: white;
}

.authModal .modal-title {
   color: #fff;
   font-weight: 600;
}

.authModal .modal-body {
   padding: 30px;
}

.authModal .btn-close {
   filter: brightness(0) invert(1);
}

.authModal .form-control,
.authModal .form-select {
   padding: 12px 15px;
   border-radius: 10px;
   border: 2px solid #eee;
   transition: all 0.3s ease;
}

.authModal .form-control:focus,
.authModal .form-select:focus {
   border-color: #0062cc;
   box-shadow: none;
}

.authModal .input-group-text {
   border: none;
   background: transparent;
   position: absolute;
   right: 15px;
   top: 50%;
   transform: translateY(-50%);
   z-index: 4;
   color: #666;
}

.authModal .input-group {
   position: relative;
}

.authModal .btn-login {
   padding: 12px 20px;
   background: linear-gradient(180deg, var(--dark-green), var(--light-green));
   border: none;
   border-radius: 10px;
   font-weight: 500;
   width: 100%;
   transition: all 0.3s ease;
   color: #fff;
}

.authModal .btn-login:hover {
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(0, 98, 204, 0.3);
}

.authModal .form-check {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin: 15px 0;
}

.authModal .password-toggle {
   cursor: pointer;
}

.authModal .register-link {
   text-align: center;
   margin-top: 20px;
   font-size: 0.9rem;
}

/* Footer  */
/* Newsletter Section */
.newsletter-section {
   background-color: #DEEED3;
   padding: 30px 0;
}

.newsletter-text {
   color: #444;
   font-size: 18px;
   margin: 0;
   display: flex;
   align-items: center;
}

.social-icons {
   display: flex;
   gap: 20px;
}

.social-icons a {
   color: white;
   font-size: 28px;
   transition: color 0.3s ease;
}

.social-icons a:hover {
   color: #ff6600;
}

.subscribe-form {
   display: flex;
   max-width: 500px;
}

.subscribe-form input {
   border: none;
   border-radius: 0;
   padding: 12px 20px;
   flex: 1;
}

.subscribe-form input:focus {
   outline: none;
   box-shadow: none;
}

.subscribe-btn {
   background-color: #344E41;
   color: white;
   border: none;
   padding: 12px 35px;
   font-weight: 600;
   cursor: pointer;
   transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
   background-color: #588157;
}

/* Main Footer */
.main-footer {
   background-color: #344E41;
   padding: 60px 0 40px;
   color: white;
}

.footer-heading {
   color: #DEEED3;
   font-size: 36px;
   font-weight: 300;
   margin-bottom: 30px;
   line-height: 1.2;
}

.contact-btn {
   background-color: #DEEED3;
   color: #444;
   border: none;
   padding: 15px 40px;
   font-size: 16px;
   font-weight: 500;
   border-radius: 4px;
   cursor: pointer;
   transition: background-color 0.3s ease;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 25px;
}

.contact-btn:hover {
   background-color: #588157;
   color: white;
}

.contact-info {
   color: #ccc;
   font-size: 16px;
   line-height: 2;
}

.contact-info a {
   color: #ccc;
   text-decoration: none;
}

.contact-info a:hover {
   color: #588157;
}

.footer-section-title {
   color: #588157;
   font-size: 20px;
   font-weight: 500;
   margin-bottom: 20px;
}

.footer-links {
   list-style: none;
   padding: 0;
   margin: 0;
}

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

.footer-links a {
   color: #ccc;
   text-decoration: none;
   font-size: 15px;
   transition: color 0.3s ease;
}

.footer-links a:hover {
   color: #588157;
}

.info-text {
   color: #ccc;
   font-size: 14px;
   line-height: 1.8;
   margin-bottom: 20px;
}

.info-title {
   color: #588157;
   font-size: 18px;
   font-weight: 500;
   margin-bottom: 15px;
}

/* Bottom Footer */
.bottom-footer {
   background-color: #2a2a2a;
   padding: 30px 0;
   border-top: 1px solid #4a4a4a;
}

.footer-logo {
   color: white;
   font-size: 42px;
   font-weight: 700;
}

.payment-icons {
   display: flex;
   gap: 15px;
   align-items: center;
}

.payment-icons i {
   font-size: 42px;
   color: white;
}

.payment-icons img {
   height: 40px;
}

.footer-bottom-links {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   gap: 15px;
   flex-wrap: wrap;
   justify-content: end;
}

.footer-bottom-links li {
   color: #ccc;
}

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

.footer-bottom-links a:hover {
   color: #588157;
}

.copyright {
   color: #999;
   font-size: 14px;
   margin-top: 15px;
}

/* Responsive */
@media (max-width: 991px) {
   .navbar {
      position: relative;
   }

   .navbar-collapse {
      position: absolute;
      top: 32px;
   }

   #mainNavbar .navbar-nav {
      display: block !important;
      /* width: 100%; */
      border-radius: 8px;
      padding: 10px 16px;
      background-color: white;
   }

   .contactNavLink {
      display: none;
   }

   .newsletter-section {
      text-align: center;
   }

   .newsletter-text {
      justify-content: center;
   }

   .social-icons {
      justify-content: center;
      margin: 20px 0;
   }

   .subscribe-form {
      margin: 0 auto;
   }
}

@media (max-width: 767px) {
   .footer-heading {
      font-size: 28px;
   }

   .subscribe-form {
      flex-direction: column;
      width: 100%;
   }

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

   .footer-bottom-links {
      justify-content: center;
   }

   .payment-icons {
      justify-content: center;
   }

   .left-modal.show {
      width: 75%;
   }

   .brand-logo img {
      width: 110px;
   }

   .userLogin {
      padding: 4px 8px;
   }

   .userLogin i {
      font-size: 12px;
   }

   .userLogin .dropdown-toggle::after {
      margin-left: 0.3rem;
      vertical-align: .155em;
   }

   .navbar-toggler {
      line-height: 0;
      padding: 0.25rem 0.65rem;
   }

   .navbar-toggler-icon {
      width: 1em;
      height: 1em;
      /* line-height: 0; */
   }

}

@media (max-width: 575px) {
   .left-modal.show {
      width: 75%;
   }

   .nav-link {
      padding: 0.375rem 0.75rem;
      font-size: 14px;
   }

   .tab-content-area {
      padding: 1rem;
   }

   .content-item h6 {
      font-size: 0.875rem;
   }

   .content-item p {
      font-size: 0.75rem;
   }

   #mainNavbar .nav-link {
      display: block;
      width: 100%;
      padding: 10px 0;
   }

   .search-btn {
      width: 26px;
      font-size: 12px;
      height: 26px;
   }

   .footer-heading {
      font-size: 22px;
   }

   .bottom-footer {
      background-color: #2a2a2a;
      padding: 20px 0;
      border-top: 1px solid #4a4a4a;
   }

   .contact-btn {
      padding: 10px 20px;
      font-size: 14px;
   }

   .contact-info {
      font-size: 14px;
   }

   .social-icons a {
      color: white;
      font-size: 22px;
   }

   .footer-links li {
      margin-bottom: 6px;
   }

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

   .payment-icons i {
      font-size: 23px;
      color: white;
   }

   .footer-bottom-links {
      gap: 8px;
   }

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