
:root {
    --accent: #00b4d8;
    --accent-foreground: #1a1a1a;
    --background: #ffffff;
    --foreground: #1a1a1a;
    --border: #e5e5e5;
    --shadow-elegant: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --light-gray: #f8f9fa;
}

.hero {
    position: relative;
    min-height: 130vh;
    padding-top: 6rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--background), var(--light-gray), var(--background));
}

/* Background Pattern */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--background), var(--light-gray), var(--background));
    opacity: 0.5;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a2847' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 1;
}


.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.25rem;
    /* margin-bottom: 2rem; */
    max-width: 500px;
    color: var(--foreground);
}

.hero-buttons a {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    text-decoration: none;
}

.btn-gold {
    background-color: var(--accent);
    color: var(--accent-foreground);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-elegant);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-elegant);
}

.btn-outline-gold:hover {
    background-color: transparent;
    color: var(--accent);
    
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.hero-stats div p:first-child {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
}

.hero-image .badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background-color: var(--accent);
    color: var(--accent-foreground);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    box-shadow: var(--shadow-elegant);
}

.hero-image .accent-circle {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 5rem;
    height: 5rem;
    background-color: var(--accent);
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(1rem);
}

@media(max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons a {
        margin-right: 0;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image .badge {
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
    }

    .hero-image .accent-circle {
        right: 50%;
        top: 0;
        transform: translateX(50%);
    }
}



.hero-image .image-wrapper {
  position: relative;
}

.hero-image .image-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  max-width: 400px;
  margin: auto;
  aspect-ratio: 3/4;
  background-color: var(--light-gray);
  box-shadow: var(--shadow-elegant);
}

.hero-image .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image .image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 60%);
}

.hero-image .image-frame {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 100%;
  height: 100%;
  border: 4px solid var(--accent);
  border-radius: 1rem;
  z-index: -1;
}

.hero-image .image-badge {
  position: absolute;
  bottom: -1.5rem;
  font-size: 2rem;
  right: -1rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  box-shadow: var(--shadow-elegant);
  font-weight: bold;
}

.hero-image .top-accent {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 5rem;
  height: 5rem;
  background-color: var(--accent);
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(1rem);
}

@media(max-width: 992px){
  .hero-image .image-container {
    max-width: 300px;
  }
}