@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@400;700&family=Raleway:wght@400;600;700&display=swap');

.body{
    margin: 0;
    
}

.logo-wrapper {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.logo-text {
  width: 70%;
  height: auto;
  padding: 4px;
}

.brand-name {
  font-size: clamp(14px, 2vw, 20px); 
  font-weight: 700;
  color: #000;
}

.hero-content h1{
  font-family: 'Raleway', sans-serif;
}

.hero-content p{
  font-family: 'Alegreya', sans-serif;
}

.hero-section {
    position: relative;
    height: 600px;
    color: white;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Default: show mobile, hide desktop */
.desktop-bg {
  display: none;
}
.mobile-bg {
  display: block;
  width: 100%;
  height: auto;
}

/* From medium screens and above (≥768px), show desktop image */
@media (min-width: 768px) {
  .desktop-bg {
    display: block;
    width: 100%;
    height: auto;
  }
  .mobile-bg {
    display: none;
  }
}

.hero-section h1 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  line-height: 1.2;
  text-align: center;
  padding: 0 10px;
}

.hero-section p {
  font-size: clamp(0.9rem, 3vw, 1.25rem);
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 12px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.h1, h2,h3,h4,h5,h6{
    font-family: 'raleway',sans-serif;
  }

  p,a{
    font-family: 'Alegreya', sans-serif;
  }

.gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px;
            background: #f5f5f5;
            border-radius: 8px;
        }
        .gallery-item {
            margin-bottom: 20px;
        }
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .gallery-item img:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.25);
        }

.card-p{
  font-family: 'Alegreya', sans-serif;
  font-size: 14px;
  font-weight: 400;
}