:root {
    --primary: #ff00dd;
    --primary-dark: #d400b8;
    --secondary: #5e0080;
    --text: #333333;
    --light-bg: #fff5ff;
    --white: #ffffff;
    --gold: #ffcc00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Fredoka', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 20px 0;
}

header.scrolled {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Grand Hotel', cursive;
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    display: inline-block;
    border: none;
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 221, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--secondary);
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 100px 0;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    background: radial-gradient(circle at top right, var(--light-bg), var(--white));
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--secondary);
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    width: 80%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    box-shadow: 20px 20px 0 var(--primary);
}

.blob-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(50px);
}

/* About Section */
#about {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    background-color: var(--light-bg);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: inline-block;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: -20px 20px 0 var(--secondary);
}

/* Services */
#services {
    background-color: var(--light-bg);
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    transition: all 0.3s;
}

.service-card i {
    color: var(--primary);
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* Portfolio Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Contact */
#contact {
    background-color: var(--secondary);
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-details .item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-details .item i {
    color: var(--primary);
}

.contact-form form {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 15px;
    outline: none;
    font-size: 1rem;
    transition: border 0.3s;
}

.contact-form input:focus {
    border-color: var(--primary);
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    background-color: var(--white);
}

.footer-logo {
    font-size: 2.5rem;
    font-family: 'Grand Hotel', cursive;
    color: var(--secondary);
    margin-bottom: 20px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.socials a {
    color: var(--secondary);
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes pop {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.animate-pop {
    animation: pop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .hero-content h1 { font-size: 3rem; }
    .about-grid, .contact-wrapper { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { 
        display: block; 
        cursor: pointer;
        color: var(--secondary);
        z-index: 1001;
    }

    nav ul { 
        display: none; 
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 20px 0;
    }

    nav ul li a {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .gallery { grid-template-columns: 1fr; }
}