* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #C09A90; /* Matching the soft dusty rose background */
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

.background-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 2rem 5rem;
    overflow: hidden;
}

/* Floating Spheres */
.sphere {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(145deg, #d8aead, #a8847c);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.1), 
               -10px -10px 30px rgba(255,255,255,0.1);
}

.top-right {
    width: 80px;
    height: 80px;
    top: 15%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.bottom-left {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: 10%;
    background: linear-gradient(145deg, #dfb3a0, #b18c7c);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
}
.logo-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.contact-btn {
    text-decoration: none;
    color: white;
    font-size: 0.95rem;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8rem;
    position: relative;
    z-index: 10;
}

.content {
    flex: 1;
    max-width: 600px;
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 400px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.cta-link .arrow {
    margin-left: 8px;
    transition: transform 0.3s;
}

.cta-link:hover .arrow {
    transform: translateX(5px);
}

/* Color Picker */
.color-picker {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.color-dot.active {
    border-color: white;
    transform: scale(1.1);
}

/* Hero Image */
.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scroll Mouse Icon */
.mouse-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 6px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 15px; opacity: 0; }
}

/* Right side menu */
.controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bar {
    width: 16px;
    height: 2px;
    background: white;
}
