/*mobile browsers */
    @charset "UTF-8";
    @font-face {
      font-family: 'aqua';
      src: url(./fonts/aqua.ttf);
      font-weight: normal;
      font-style: normal;
    }

    @font-face {
      font-family: 'robotoSlab';
      src: url(./fonts/RobotoSlab-VariableFont_wght.ttf);
      font-weight: normal;
      font-style: normal;
    }

    :root {
      --screen-width: 390px;
      --screen-height: 844px;
      --header-bg-color: rgb(64, 64, 64);
      --splash-bg-color: rgb(64, 64, 64);
    }
    
    body {
      margin: 0;
      background: #545454;
    }
    
    /* NAVIGATION STYLES */
    .nav {
      background-color: #3d3d3d;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      position: relative;
      z-index: 10;
    }
    
    .nav__header {
      height: 4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      box-sizing: border-box;
    }

    /*gallery nav issue*/
    .nav__header .eapps-widget-toolbar {
      position: fixed;
      top: 0;
      right: 0;
      pointer-events: none;
      opacity: 0;
      height: 0;
      overflow: hidden;
    }

    .eapps-widget-toolbar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9999;
    }
    
    .nav__title-link {
      height: 5rem;
      text-decoration: none;
    }

    .nav__title-link img {
      height: 5rem;
      width: auto;
      object-fit: contain;
      margin-top: 1rem;
    }
    
    /* HAMBURGER BUTTON */
    .nav__toggle {
      background: none;
      border: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
      padding: 0.5rem;
      align-items: center;
      justify-content: center;
      height: 2rem;
      width: 2rem;
      z-index: 1000000;
    }
    
    .nav__toggle .bar {
      width: 24px;
      height: 3px;
      background-color: #D4AF37;
      transition: all 0.3s ease;
    }
    
    .nav__toggle.open .bar:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav__toggle.open .bar:nth-child(2) {
      opacity: 0;
    }
    
    .nav__toggle.open .bar:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* MOBILE MENU */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .nav__menu {
      display: none;
      flex-direction: column;
      padding: 0;
      margin: 0;
      background: #2a2a2a;
      width: 100%;
      transition: all 0.3s ease-in-out;
    }
    
    .nav__menu.active {
      display: flex;
      animation: fadeIn 0.3s ease forwards;
    }
    
    .nav__item {
      list-style: none;
    }
    
    .nav__link {
      display: block;
      padding: 1rem;
      border-top: 1px solid #D4AF37;
      text-decoration: none;
      font-family: 'robotoSlab';
      color: #D4AF37;
    }
    
    

    
    /* MAIN CONTENT (simple for mobile) */
    .main {
      display: block;
      padding: 2rem;
    }

    .fade-on-scroll {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Profile Card */
    .profile-card {
      display: flex;
      align-items: center;
      background-color: #2a2a2a;
      padding: 1rem;
      margin: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      gap: 1rem;
    }

    .profile-card__image {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 50%; /* makes it circular */
      border: 2px solid #fff;
    }

    .profile-card__text h2 {
      color: #f0f0f0;
      font-size: 1.25rem;
      font-family: 'aqua';
      margin: 0
    }

    /* Content Section */
    .content {
      padding: 2rem 1 rem;
      text-align: center;
    }

    .content__heading {
      font-size: 1.5rem;
      font-family: 'robotoSlab';
      color: #f0f0f0;
      margin-bottom: 0.5rem;
      margin-top: 5rem;
    }

    .content__text {
      font-size: 1rem;
      font-family: 'robotoSlab';
      color: #ccc;
      margin-bottom: 5rem;
    }

    /*Button Base*/
    .btn {
      display: block;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      padding: 0.75rem, 1.5rem;
      border-radius: 8px;
      width: 90%;
      height: 2rem;
      margin: 1rem auto 0 auto;
      transition: transform 0.2s ease, box-shadow 0.2s ease;

      display: flex;
      align-items: center;
      justify-content: center;
    }

    /*primary style*/
    .btn--primary {
      background-color: #2a2a2a;
      color: #D4AF37;
      font-family: 'aqua';
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /*Button hover/tap feedback*/
    .btn--primary:hover,
    .btn--primary:focus {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .btn--primary:active {
      transform: translateY(0);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /*Contact Page*/
    .contact_main {
      padding: 2rem;
      justify-content: center;
      align-items: center;
    }

    .contact_heading {
      text-align: center;
      font-size: 3rem;
      font-family: 'robotoSlab';
      margin-top: 4rem;
      color: #D4AF37;
    }

    .email {
      text-align: center;
      font-size: 1.2rem;
      font-family: 'aqua';
      margin-top: 8rem;
      color: #ccc;
    }

    .instagram_row {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 1.5rem;
      justify-content: center;
      margin-top: 1rem;
      margin-bottom: 4rem;
      color: #ccc;
      font-family: 'aqua';
    }
    .instagram{
      margin: 0;
      padding: 0;
    }

    .instagram_link {
      margin: 0;
      padding: 0;
      color: #D4AF37;
    }

    .instagram_link:hover {
      color: #ccc;
      font-size: 1.6rem
    }

    /*gallery*/
    .widget-wrapper {
      position: relative;
    }

    .branding-cover {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 50px;
      background-color: #545454;
      z-index: 10000000000; 
    }
