/* Base styles and typography */
/* Import all CSS modules */
@import url('base.css');
@import url('layout.css');
@import url('hero.css');
@import url('dropdown.css');
@import url('sidebar.css');
@import url('social.css');
@import url('animations.css');
@import url('logo.css');

@font-face {
  font-family: 'Gincu';
  src: url('../fonts/Gincu.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}

/* Hero section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero-title {
  font-family: 'Gincu', sans-serif;
  font-size: 4rem;
  color: #000;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: #000;
  font-weight: 500;
}

/* Hide logo by default */
.main-logo {
  display: none;
}

/* Only show logo in the logo-area */
.logo-area .main-logo {
  display: block;
}
