/* 
    Gorgeously by Yamie - Style Sheet
    Color Palette:
    - Rose Gold: #C9956C, #E8B4A0
    - Blush Pink: #F5D6D0
    - Cream/Off-white: #FAF6F2
    - Deep Brown: #5C3A2E
    - Black: #1A1A1A
*/

:root {
    --rose-gold: #C9956C;
    --rose-gold-light: #E8B4A0;
    --blush-pink: #F5D6D0;
    --cream: #FAF6F2;
    --deep-brown: #5C3A2E;
    --black: #1A1A1A;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-4 { margin-top: 1.5rem; }
.w-100 { width: 100%; }

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--deep-brown);
    margin-bottom: 40px;
}

.alternate-bg {
    background-color: var(--blush-pink);
}

section:nth-of-type(odd) {
    background-color: var(--cream);
}

section:nth-of-type(even) {
    background-color: var(--blush-pink);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--rose-gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--deep-brown);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--rose-gold);
    color: var(--rose-gold);
}

.btn-outline:hover {
    background-color: var(--rose-gold);
    color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: var(--white);
    padding: 10px 0;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 700;
    color: var(--black);
    font-size: 1.1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--rose-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(201, 149, 108, 0.4), rgba(201, 149, 108, 0.6)), url('../assets/nails1.jpg'); /* Placeholder if hero.jpg missing */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Hero Animations */
.animate-hero {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.animate-hero-sub {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
}

.animate-hero-btns {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1.1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-info {
    padding: 30px;
    text-align: center;
}

.service-info i {
    font-size: 2.5rem;
    color: var(--rose-gold);
    margin-bottom: 15px;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-info p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Shapes Section */
.shape-chart {
    max-width: 600px;
    margin: 0 auto;
}

.shape-chart img {
    border-radius: 15px;
}

.rounded { border-radius: 15px !important; }
.shadow { box-shadow: var(--shadow) !important; }

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

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(201, 149, 108, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 2rem;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item.placeholder {
    background-color: var(--rose-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

/* About Section */
.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-content {
    flex: 1;
}

.decorative-line {
    width: 80px;
    height: 4px;
    background-color: var(--rose-gold);
    margin: 15px 0 25px 0;
}

/* Contact Section */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-card i {
    font-size: 3rem;
    color: var(--rose-gold);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-card p {
    margin-bottom: 20px;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--rose-gold);
    box-shadow: 0 0 5px rgba(201, 149, 108, 0.3);
}

/* Footer */
.footer {
    background-color: var(--deep-brown);
    color: var(--cream);
    padding: 80px 0 40px 0;
}

.footer-logo {
    height: 120px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.tagline {
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    margin-bottom: 30px;
}

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

.social-icons i {
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover i {
    color: var(--rose-gold-light);
    transform: translateY(-5px);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 100;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: none;
    width: 50px;
    height: 50px;
    background-color: var(--rose-gold);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 99;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

#back-to-top:hover {
    background-color: var(--deep-brown);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 4rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-title { font-size: 2.5rem; }
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        text-align: center;
    }
    .nav-links.active { display: flex; }
    .hero-content h1 { font-size: 3rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .services-grid { grid-template-columns: 1fr; }
    .about-flex { flex-direction: column; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-form-container { padding: 30px; }
}

@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
}
