@font-face {
    font-family: 'Quicksilver';
    src: url('fonts/Quicksilver.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  :root {
    --primary-color: #373737;
    --secondary-color: #EBD7C3;
    --light-color: #F4F4EF;
    --accent-color: #ADBCDD;
    --text-color: #373737;
    --gray-color: #7d7d7d;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header Styles */
  header {
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo a {
    text-decoration: none;
    color: var(--primary-color);
  }
  
  .logo h1 {
    
    font-weight: normal;
    letter-spacing: 2px;
    }

    .logo h1 span {
        font-family: 'Montserrat', sans-serif;
        color: var(--accent-color);
        font-size: 1.6rem;
    }

    .logo h1 .hima {
        font-family: 'Quicksilver', sans-serif;
        font-size: 3rem;
    }
  
  .logo span {
    color: var(--accent-color);
  }
  
  .main-nav {
    display: flex;
    list-style: none;
  }
  
  .main-nav li {
    margin-left: 30px;
  }
  
  .main-nav a {
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
    position: relative;
  }
  
  .main-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: var(--transition);
  }
  
  .main-nav a:hover:after,
  .main-nav a.active:after {
    width: 100%;
  }
  
  .mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
  }
  
  .mobile-nav-toggle i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .language-switch {
    display: flex;
    align-items: center;
  }
  
  .language-switch button {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-color);
    padding: 5px 8px;
    transition: var(--transition);
  }
  
  .language-switch button.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
  }
  
  /* Button Styles */
  .btn {
    border-radius: 0;
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
  }
  
  .btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
  }
  
  .btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid var(--secondary-color);
  }
  
  .btn-secondary:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    border-color: var(--light-color);
    transform: translateY(-2px);
  }

  /* Hero Section */

  .hero {
    height: 70vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
      url('images/himalogo3.jpg');
    background-size: cover;
    background-position: center;
    position: relative; /* Tämä tarvitaan absoluuttista positiointia varten */
    color: white;
}

.hero-content {
    position: absolute; /* Muutetaan absoluuttiseksi */
    left: 50%;
    bottom: 80px; /* Etäisyys pohjasta */
    transform: translateX(-50%); /* Keskittää vaakasuunnassa */
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-content span {
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
  /* Page Header */
  .page-header {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
  }
  
  /* Properties Section */
  .featured-properties,
  .properties-section {
    padding: 120px 0;
    background-color: var(--light-color);
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    letter-spacing: 1px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
  }
  
  .section-title:after {
    content: '';
    display: block;
    background-color: var(--secondary-color);
    width: 50px;
    height: 2px;
    margin: 10px auto 0;
  }
  
  .properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .property-card {
    background-color: white;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
  }
  
  .property-card:hover {
    transform: translateY(-5px);
  }
  
  .property-image {
    height: 200px;
    background-size: cover;
    background-position: center;
  }
  
  .property-info {
    padding: 20px;
  }
  
  .property-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 500;
  }
  
  .property-price {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .property-details {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .property-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .property-link:hover {
    color: var(--accent-color);
  }
  
  .view-all {
    text-align: center;
    margin-top: 40px;
  }
  
  /* Properties Filters */
  .properties-filters {
    background-color: white;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
  }
  
  .search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .search-box input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
  }
  
  .search-box button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .search-box button:hover {
    background-color: var(--accent-color);
  }
  
  .filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .filter-options select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    background-color: white;
    cursor: pointer;
  }

  /* Services Section Styles */
.services {
    padding: 120px 0;
    background-color: var(--light-color);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    text-align: center;
    padding: 50px 30px;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    background-color: var(--secondary-color);
  }
  
  .service-card .service-icon {
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 30px;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
  }
  
  .service-card p {
    color: var(--text-color);
  }
  
  /* Services Detail Page */
  .services-detail {
    padding: 60px 0;
  }
  
  .service-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
    background-color: white;
    padding: 40px;
    box-shadow: var(--shadow);
  }
  
  .service-item .service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    min-width: 60px;
  }
  
  .service-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
  }
  
  .service-content p {
    margin-bottom: 20px;
  }
  
  .service-content ul {
    list-style-type: none;
    margin-left: 20px;
  }
  
  .service-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
  }
  
  .service-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
  }
    /* Pricing Section */
    .pricing-section {
        padding: 80px 0;
        background-color: var(--light-color);
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .pricing-card {
        background-color: white;
        box-shadow: var(--shadow);
        transition: var(--transition);
        text-align: center;
    }

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

    .pricing-header {
        padding: 30px;
        border-bottom: 1px solid #eee;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    .price {
        font-size: 2.5rem;
        color: var(--accent-color);
        margin-bottom: 10px;
        font-weight: 600;
    }

    .pricing-content {
        padding: 30px;
    }

    .pricing-content ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .pricing-content li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        color: var(--text-color);
    }

    .pricing-content li:last-child {
        border-bottom: none;
    }

    .pricing-footer {
        padding: 20px 30px 30px;
    }

    .pricing-footer p {
        color: var(--gray-color);
        margin-bottom: 15px;
    }

  /* FAQ Section */
  .faq-section {
    padding: 60px 0;
    background-color: var(--light-color);
  }
  
  .accordion {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .accordion-item {
    background-color: white;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
  }
  
  .accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--primary-color);
  }
  
  .accordion-header i {
    transition: transform 0.3s ease;
  }
  
  .accordion-header.active i {
    transform: rotate(180deg);
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
  }
  
  .accordion-content.active {
    max-height: 500px;
    padding: 20px;
  }
  
  /* Contact Page Styles */
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .contact-info {
    background-color: white;
    padding: 40px;
    box-shadow: var(--shadow);
    height: fit-content;
  }
  
  .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .contact-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    min-width: 24px;
    margin-top: 5px;
  }
  
  .contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
  }
  
  .contact-form-container {
    background-color: white;
    padding: 40px;
    box-shadow: var(--shadow);
  }
  
  .contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
  }
  
  .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group:nth-child(5) {
    grid-column: 1 / -1;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
  }
  
  .form-group textarea {
    resize: none;
    min-height: 120px;
    height: 120px;
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
  }
  
  .map-container {
    margin-top: 60px;
  }
  
  .map-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
  }
  
  .map {
    height: 450px;
    box-shadow: var(--shadow);
  }
  
  .map iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* Footer Styles */
/* Footer Styles */
footer {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 80px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-weight: normal;
    letter-spacing: 2px;
}

.footer-logo h2 span {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    font-size: 1.6rem;
}

.footer-logo h2 .hima {
    font-family: 'Quicksilver', sans-serif;
    font-size: 3rem;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-logo p {
    opacity: 0.9;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-social h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.footer-contact .contact-text {
    display: inline-block;
    line-height: 1.5;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
    margin-right: 10px;
    margin-top: 4px;
}

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

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .hero-content h2 {
      font-size: 2.8rem;
    }
    
    .section-title {
      font-size: 2.2rem;
    }
    
    .contact-content {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .mobile-nav-toggle {
      display: block;
    }
    
    .main-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      flex-direction: column;
      background-color: var(--light-color);
      box-shadow: var(--shadow);
    }
    
    .main-nav.active {
      display: flex;
    }
    
    .main-nav li {
      margin: 0;
      width: 100%;
      text-align: center;
    }
    
    .main-nav a {
      display: block;
      padding: 15px;
    }
    
    .hero-content h2 {
      font-size: 2.3rem;
    }
    
    .hero-content p {
      font-size: 1rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      gap: 15px;
    }
    
    .contact-content {
      grid-template-columns: 1fr;
    }
    
    .contact-form {
      grid-template-columns: 1fr;
    }
    
    .service-item {
      flex-direction: column;
      padding: 30px;
    }
    
    .properties-grid {
      grid-template-columns: 1fr;
    }
    
    .filter-options {
      grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
  }
  

    @media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 10px 15px;
    }
    
    
    .logo h1 span {
        font-size: 1.2rem; 
    }

    .logo h1 .hima {
        font-size: 2.2rem; 
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 25px;
    }
    
    .map {
        height: 300px;
    }
    
    
    .footer-logo h2 span {
        font-size: 1.2rem;
    }
  
    .footer-logo h2 .hima {
        font-size: 2.2rem;
    }
  }
  
  /* Loading States */
  .loading .skeleton {
    background: linear-gradient(90deg, 
      var(--light-color) 25%, 
      #e0e0e0 50%, 
      var(--light-color) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
  }
  
  @keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }
  
  /* Helper Classes */
  .text-center {
    text-align: center;
  }
  
  .mt-20 {
    margin-top: 20px;
  }
  
  .mb-20 {
    margin-bottom: 20px;
  }
  
  .hidden {
    display: none;
  }
  
  /* Print Styles */
  @media print {
    header, 
    footer, 
    .hero,
    .contact-form-container,
    .map-container {
      display: none;
    }
    
    body {
      background-color: white;
      color: black;
    }
    
    .container {
      max-width: 100%;
      padding: 0;
    }
    
    a {
      text-decoration: none;
      color: black;
    }
  }