.gt-social-footer {
        position: fixed; 
        bottom: 40px;    
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        gap: 25px;
        z-index: 9999;
        width: 100%;
    }

    .gt-social-btn-white {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11px;
        font-weight: bold;
        letter-spacing: 2px;
        color: #ffffff; 
        text-decoration: none;
        padding: 8px 16px;
        border: 1px solid rgba(255,255,255,0.4); 
        border-radius: 2px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(0, 0, 0, 0.3); /* Slightly darker for better red/white contrast */
        backdrop-filter: blur(5px);    
    }

    /* Icon Styling */
    .gt-social-btn-white i {
        font-size: 16px; /* Slightly larger for that "native" feel */
    }

    .gt-social-btn-white:hover {
        border-color: #ffffff;
        background-color: rgba(255, 255, 255, 0.2);
    }

    /* Keeps icon red even on hover */
    .gt-social-btn-white:hover i {
        color: #FF0000 !important;
    }

/* Restoring your original anchor point */
  .gt-vessel {
    position: absolute;
    top: -50vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 9999;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
   
    /* This ensures everything stays in a tight, centered column */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
  }

  /* Scaled down to 25% of previous size */
  .gt-logo-img {
    width: 150px;       /* Shrunk from 240px to 60px */
    height: auto;
    display: block;
    margin: 0 auto 5px auto; /* Reduced bottom margin for a tighter look */
  }

  .gt-subtitle {
   font-family: 'Georgia', Times, serif !important;
    font-size: 20px;
    font-style: italic !important;
    letter-spacing: 4px;
    font-weight: 600;
    color: #1b5e20 !important;
    margin: 0 0 45px 0;
    text-transform: uppercase;
  }

  .gt-nav-wrap {
    display: flex;
    justify-content: center;
  }

  .gt-menu-item {
    position: relative;
    display: inline-block;
  }

  .gt-btn {
    background: black;
    color: white;
    padding: 15px 30px;
    font-size: 15px;
    letter-spacing: 4px;
    border: 3px solid #2e7d32;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    outline: none;
  }

  .gt-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #1b5e20; /* Darkens the green slightly on hover */
  }

  .gt-dropdown {
    display: none;
    position: absolute;
    /* This makes it solid black */
    background-color: #000000 !important; 
    min-width: 220px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 2px;
    /* Ensure it sits on top of everything */
    z-index: 99999; 
    border: 2px solid #2e7d32;   /* The Green Frame */
    border-radius: 2px;         /* Matches the button corner feel */
    box-shadow: 0px 10px 30px rgba(0,0,0,0.5); /* Adds depth */
/* THIS ADDS THE GRACE PERIOD */
  transition: all 0.5s ease;
  transition-delay: 0.3s;
  }

  .gt-menu-item:hover .gt-dropdown {
    display: block;
  }

  .gt-dropdown a {
    color: #ffffff !important;
    padding: 15px;
    display: block;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    border-bottom: 1px solid #2e7d32;!important
    text-align: center;
  }

  .gt-dropdown a:hover {
    background: #111;           /* Slightly lighter black */
    color: #2e7d32 !important;  /* Text turns green on hover */
  }
