/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* ROOT COLORS - SIMPLIFIED */
  :root {
    --bg: #ffffff;
    --text: #000000;
    --border: #000000;
  }
  
  /* FONT */
  @font-face {
    font-family: "font1";
    src: url(../Fonts/Roboto-VariableFont_wdth\,wght.ttf) format("truetype");
  }
  
  /* GLOBAL */

  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  
  body {
    font-family: "font1", sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;

  }
  
  p, li {
    font-size: 18px;
  }
  
  /* HEADER */
    
  header {
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
  }
  
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;

  }
    
  header img.logo {
    height: 70px;
  }
  
  /* NAVIGATION */

    
  nav a:hover {
    text-decoration: underline;
  }
  
  #menu-toggle {
    display: none;
  }
      
  .hamburger {
    cursor: pointer;
    width: 35px;
    height: 25px;
    position: relative;
  }
    
  .hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background-color: black;
    margin-bottom: 5px;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
      
  /* DROPDOWN MENU THAT DISPLAYS AFTER CLICKING HAMBURGER MENU */
    
  .mobile-nav {
    
    position: absolute;
    top: 70px;
    right: 0;
    width: 60%;
    background-color: rgba(255, 255, 255, 0.6);
    
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #000;
    z-index: 1000;
  }
      
  .mobile-nav a {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    color: var(--primary-text);
    font-weight: bold;
  }
  
  /* HERO SECTION */
  .mainLogo {
    padding-top: 90px;

  
    align-items: center;
    justify-content: center;
    text-align: center;
  }
    /*
  /* .mainLogo img {
    padding-top: 200px;
  } 
  
  /* .mainLogo-text {
    padding: 20px;
  } */
    
  .mainLogo-text h1 {
    font-size: 32px;

  }
  
  .mainLogo-text p {
    font-size: 18px;
  }
  
  /* SECTIONS */
    
  section {
    padding: 10px 20px;
    text-align: left;
  }
  
  .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .section-title {
    text-align: center;

    font-size: 32px;
  }
  
  /* ABOUT SECTION SPACING */
    
  .aboutMe {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  /* BUTTONS */
    
  .button-wrapper {
    text-align: center;
    margin-top: 20px;
  }
  
  .consult {
    font-size: 18px;
    padding: 10px 24px;
    background-color: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    cursor: pointer;
    font-family: "font1", sans-serif;
  }
  
  .consult:hover {
    background-color: var(--text);
    color: var(--bg);
  }
  
  /* CARDS */
      
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .card {
    border: 1px solid var(--border);
    padding: 25px;
  }
  
  .card h3 {
    margin-bottom: 10px;
  }
  
  /* LINKS */
    
  a {
    color: var(--text);
  }
  
  /* FOOTER */
    
  footer {
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--border);
  }
  
  footer img {
    height: 60px;
    margin-bottom: 10px;
  }
  
  footer small {
    display: block;
    margin-top: 10px;
    color: #555;
  }
  
    
  /* CONTACT PAGE */
      
  .contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .contact-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
  }
  
  .contact-form {
    flex: 1;
    padding: 60px;
  }
  
  .contact-form h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .contact-form input,
  .contact-form textarea,
  .dropdown select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    font-size: 16px;
    background-color: var(--bg);
    color: var(--text);
    margin-bottom: 15px;
  }
  
  .send {
    font-size: 16px;
    padding: 10px 20px;
    background-color: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    cursor: pointer;
  }
  
  .send:hover {
    background-color: var(--text);
    color: var(--bg);
  }
  
  /* SERVICES PAGE */
    
  .services-list {
    padding: 80px 60px;
  }
  
  .services-list h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .service-item {
    border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
  }
  
  .service-item summary {
    cursor: pointer;
    padding: 15px 0;
    font-weight: bold;
    list-style: none;
  }
  
  .service-item summary::-webkit-details-marker {
    display: none;
  }
  
  /* MOBILE */
    
  @media (max-width: 768px) {
    header .container {
      padding: 0 20px;
    }
  
  

    .contact-container {
      flex-direction: column;
    }
  
    .services-list {
      padding: 60px 30px;
    }
  
    .mainLogo-text {
      margin-top: 10px;
    }
  }
  