/* Critical CSS at the top */
:root {
    --main-color: #2ecc71;
    --primary-color: #D4213D;
    --secondary-color: #1A1A1A;
    --accent-color: #F8F8F8;
}

/* Add these performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.navbar, .hero-bg {
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

/* Optimize animations */
[data-aos] {
    transform: translateZ(0);
    will-change: transform, opacity;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--accent-color);
}
  .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      color: white;
  }

  .hero-bg {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/sushi.jpg');
      background-size: cover;
      background-position: center;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
  }

  .position-relative {
      z-index: 1;
  }
.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero .lead {
    font-size: 1.8rem;
    font-weight: 300;
}
  .navbar {
      padding: 1.5rem 0;
      transition: all 0.4s ease;
      background: rgba(0,0,0,0.8);
      transform: translateZ(0);
      will-change: transform;
      backface-visibility: hidden;
  }
.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(0,0,0,0.95);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
}

/* About Section Styles */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    position: relative;
}

.about-image {
    position: relative;
    padding: 20px;
}

.main-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.floating-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border: 5px solid white;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 0;
    background: linear-gradient(135deg, #2ecc71 0%, #4cd137 100%);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
}

.feature-box {
    border-left: 4px solid var(--icon-green);
}

.feature-box i {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #2ecc71 0%, #4cd137 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.1);
}

.section-title::after {
    background: #2ecc71;
}    text-transform: uppercase;
}

.about-content {
    padding: 2rem;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Location Section Styles */
.location-section {
    background-image: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%),
                      url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%239C92AC" fill-opacity="0.05"%3E%3Cpath d="M0 0h20L0 20z"/%3E%3C/g%3E%3C/svg%3E');
    background-attachment: fixed;
    position: relative;
}

.location-info {
    padding: 4rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Fresh green colors for all icons */
:root {
    --icon-green: #2ecc71;
    --icon-green-light: #4cd137;
}

.mobile-menu-icon {
    color: var(--icon-green);
}

.mobile-nav-icon {
    background: linear-gradient(45deg, var(--icon-green), var(--icon-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--icon-green) 0%, var(--icon-green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(212, 33, 61, 0.2);
    transition: transform 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.1);
}

.icon-circle i {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.contact-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.map-wrapper {
    border-radius: 15px;

.feature-box i {
    background: linear-gradient(135deg, var(--icon-green) 0%, var(--icon-green-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-toggler {
    background: linear-gradient(45deg, var(--icon-green), var(--icon-green-light));
}    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    display: block;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;

.feature-box i {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.2rem;
    display: inline-block;
}    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.sponsor-section {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sponsor-wrapper {
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sponsor-title {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sponsor-content {
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
  .modern-toggler {
    border: none;
    background: transparent;
    padding: 10px;
    position: relative;
    z-index: 1000;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #2ecc71;
    border-radius: 10px;
    transition: 0.35s ease-in-out;
    box-shadow: 0 2px 10px rgba(46, 204, 113, 0.2);
}

.hamburger-icon span:nth-child(1) {
    top: 0;
}

.hamburger-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-icon span:nth-child(3) {
    bottom: 0;
}

/* Animation when menu is opened */
[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 40%;
}

  @media (max-width: 991px) {
      .mobile-menu {
          background: rgba(0, 0, 0, 0.95);
          padding: 20px;
          border-radius: 15px;
          margin-top: 10px;
          backdrop-filter: blur(10px);
      }

      .navbar-nav .nav-link {
          padding: 15px;
          border-radius: 10px;
          margin: 5px 0;
          display: flex;
          align-items: center;
      }

      .navbar-nav .nav-link:hover {
          background: rgba(255, 255, 255, 0.1);
          transform: translateX(10px);
      }

      .mobile-icon {
          display: inline-block;
          font-size: 1.5rem;
          color: #2ecc71;
          margin-right: 15px;
          vertical-align: middle;
          transition: transform 0.3s ease;
      }

      .nav-link:hover .mobile-icon {
          transform: scale(1.2);
      }

      .nav-link {
          display: flex;
          align-items: center;
          padding: 15px 20px;
      }

      .nav-link span {
          font-size: 1.1rem;
      }
  }

  @media (min-width: 992px) {
      .mobile-icon {
          display: none;
      }
  }
  .simple-footer {
      background: #1a1a1a;
      padding: 20px 0;
      text-align: center;
  }

  .simple-footer p {
      color: #fff;
      margin: 0;
      font-size: 14px;
  }

  .simple-footer a {
      color: #2ecc71;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .simple-footer a:hover {
      color: #27ae60;
  }
  .header-buttons-wrapper {
      margin: 40px auto;
      display: flex;
      justify-content: center;
      gap: 25px;
  }

  .glf-button {
      background: #2ecc71 !important;
      color: white !important;
      border: none !important;
      padding: 16px 32px !important;
      border-radius: 30px !important;
      transition: all 0.3s ease !important;
      box-shadow: 0 5px 20px rgba(46, 204, 113, 0.3) !important;
  }

  .glf-button:nth-child(2) {
      background: white !important;
      color: #2ecc71 !important;
      border: 2px solid #2ecc71 !important;
  }

  .glf-button:hover {
      transform: translateY(-3px);
      background: #27ae60 !important;
      box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4) !important;
  }

  .glf-button:nth-child(2):hover {
      background: #2ecc71 !important;
      color: white !important;
  }

  @media (max-width: 768px) {
      .header-buttons-wrapper {
          flex-direction: column;
          align-items: center;
      }
    
      .elegant-btn {
          width: 80%;
      }
  }

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2ecc71 !important;
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.error-logo {
    height: 60px;
    margin-bottom: 30px;
}

.error-title {
    font-size: 120px;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 20px;
}

.sushi-roll {
    display: inline-block;
    animation: roll 3s infinite linear;
}

.error-content h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 15px;
}

.error-content p {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-error-home {
    background: #2ecc71;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-error-home i {
    margin-right: 10px;
}

.btn-error-home:hover {
    background: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

@keyframes roll {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .error-title {
        font-size: 80px;
    }
}
