@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;
}

.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: 768px;
   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;
}

.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);
}