/* Reset and Base Styles */

body {
  background-image: url("../img/bg2.jpg");
  background-size: cover;        /* make it cover the whole page */
  background-position: center;   /* center it */
  background-repeat: no-repeat;  /* don’t repeat */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #F0F1FF;
  min-height: 100vh;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F0F1FF;
    min-height: 100vh;
}

/* Main Container */
.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 2rem;
    text-align: left;
}

.header h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.nav-container {
    background: #c084fc;
    border-radius: 9999px;
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    padding: 0.75rem;
    border-radius: 9999px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #374151;
    position: relative;
    z-index: 2;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #c084fc;
    transform: scale(1.1);
}

.nav-btn.active {
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.nav-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Home Page Styles */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60vh;
    gap: 2rem;
}

.home-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.microphone-container {
    position: relative;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
}

.circle-1 {
    width: 10rem;
    height: 10rem;
    top: -4rem;
    left: -4rem;
    opacity: 0.7;
}

.circle-2 {
    width: 8rem;
    height: 8rem;
    top: 6rem;
    right: -2rem;
    opacity: 0.6;
}

.circle-3 {
    width: 7rem;
    height: 7rem;
    bottom: -2rem;
    left: 2rem;
    opacity: 0.5;
}

.circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.microphone {
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
	width: 200px;
	height: auto;
}

.microphone:hover {
    transform: scale(1.05);
}

.microphone-img {
    width: 400px;
    height: auto;
    object-fit: contain;
}

.home-right {
    flex: 1;
    text-align: left;
}

.hello-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
	width: 400px;
}

.hello-bg {
    position: absolute;
    inset: 0;
    transform: rotate(-1deg);
    z-index: 1;
	height: auto;
}

.brush-img {
    width: 100%;
    height: 230px;
    object-fit: contain;
}

.hello-img-container {
    position: relative;
    transform: rotate(1deg);
    padding: 1rem 1.5rem;
    z-index: 2;
}

.hello-img {
    height: 200px;
	width: 400px;
    object-fit: contain;
}

.intro-container {
    position: relative;
}

.intro-bg-circle {
    position: absolute;
    top: 1rem;
    right: 2rem;
    width: 18rem;
    height: 18rem;
    opacity: 0.3;
    z-index: -1;
}

.intro-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text {
  font-family: 'Satisfy', cursive;
  font-size: 1.7rem;
  color: #1f2937;
  line-height: 1.8;
  max-width: 32rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.highlight {
    font-weight: 600;
    color: #7c3aed;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

.footer p {
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .home-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 1.5rem;
    }
    
    .hello-img {
        height: 4rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .microphone-img {
        width: 12rem;
        height: 12rem;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 0 1rem;
    }
    
    .hello-img {
        height: 3rem;
    }
    
    .nav-container {
        padding: 0.25rem;
        gap: 0.25rem;
    }
    
    .nav-btn {
        padding: 0.5rem;
    }
    
    .microphone-img {
        width: 10rem;
        height: 10rem;
    }
}
