* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #8B4B6B;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #6B2C42;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #D4A5B8;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background-color: #8B4B6B;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-text {
    color: white;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #8B4B6B;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 460px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.about-text {
    color: white;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #D4A5B8;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #D4A5B8;
    color: #6B2C42;
}

.btn-primary:hover {
    background-color: #E8C4D4;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #D4A5B8;
    border: 2px solid #D4A5B8;
}

.btn-secondary:hover {
    background-color: #D4A5B8;
    color: #6B2C42;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #8B4B6B;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #D4A5B8;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #6B2C42;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image img {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-card h4 {
    color: #D4A5B8;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: white;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Salon Partners Section */
.salon-partners {
    padding: 80px 0;
    background-color: #8B4B6B;
}

.partners-list {
    display: grid;
    gap: 2rem;
}

.partner-item {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    background-color: #6B2C42;
    padding: 1.5rem;
    border-radius: 10px;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.partner-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.partner-info h4 {
    color: #D4A5B8;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.partner-info p {
    color: white;
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #8B4B6B;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #D4A5B8;
    border-radius: 5px;
    background-color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6B2C42;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: #6B2C42;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: white;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partner-image img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .about, .services, .salon-partners, .contact {
        padding: 60px 0;
    }
    
    .service-card,
    .partner-item {
        padding: 1.5rem;
    }
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 80px 0;
    background-color: #8B4B6B;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(107, 44, 66, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #D4A5B8;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Social Media Section */
.social-media {
    padding: 80px 0;
    background-color: #6B2C42;
    text-align: center;
}

.social-subtitle {
    color: white;
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Individual social media colors */
.facebook {
    background-color: #1877F2;
}

.facebook::before {
    background-color: #145dbf;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.instagram::before {
    background: linear-gradient(45deg, #d17c2a 0%,#c55a33 25%,#b91e3a 50%,#a91c5d 75%,#9a1579 100%);
}

.twitter {
    background-color: #1DA1F2;
}

.twitter::before {
    background-color: #0d8bd9;
}

.youtube {
    background-color: #FF0000;
}

.youtube::before {
    background-color: #cc0000;
}

.linkedin {
    background-color: #0077B5;
}

.linkedin::before {
    background-color: #005885;
}

.tiktok {
    background-color: #000000;
}

.tiktok::before {
    background-color: #333333;
}

.social-icon svg {
    width: 28px;
    height: 28px;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partner-image img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        min-height: 250px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .social-icons {
        gap: 1.5rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .about, .services, .salon-partners, .contact {
        padding: 60px 0;
    }
    
    .service-card,
    .partner-item {
        padding: 1.5rem;
    }
    
    .photo-gallery, .social-media {
        padding: 60px 0;
    }
    
    .gallery-overlay {
        padding: 1.5rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Hero Background Decorations */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Animated circles */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #D4A5B8, #E8C4D4);
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #F5D5E0, #D4A5B8);
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #E8C4D4, #F5D5E0);
    top: 60%;
    right: 25%;
    animation-delay: 4s;
}

/* Geometric shapes */
.bg-shape {
    position: absolute;
    opacity: 0.08;
    animation: rotate 20s linear infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: #D4A5B8;
    transform: rotate(45deg);
    top: 25%;
    left: 20%;
    border-radius: 15px;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: #F5D5E0;
    bottom: 30%;
    right: 35%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-direction: reverse;
}

/* Floating dots */
.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #D4A5B8;
    border-radius: 50%;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite;
}

.dot-1 {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
}

.dot-2 {
    top: 35%;
    right: 20%;
    animation-delay: 1s;
}

.dot-3 {
    bottom: 25%;
    left: 30%;
    animation-delay: 2s;
}

.dot-4 {
    top: 70%;
    right: 40%;
    animation-delay: 1.5s;
}

.dot-5 {
    bottom: 40%;
    right: 15%;
    animation-delay: 0.5s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Gradient overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 75, 107, 0.1) 0%, rgba(107, 44, 66, 0.1) 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    /* Existing mobile styles... */
    
    /* Adjust decorative elements for mobile */
    .circle-1 {
        width: 120px;
        height: 120px;
        top: 5%;
        right: 5%;
    }
    
    .circle-2 {
        width: 100px;
        height: 100px;
        bottom: 15%;
        left: 5%;
    }
    
    .circle-3 {
        width: 60px;
        height: 60px;
        top: 50%;
        right: 15%;
    }
    
    .shape-1 {
        width: 50px;
        height: 50px;
        top: 20%;
        left: 15%;
    }
    
    .shape-2 {
        width: 40px;
        height: 40px;
        bottom: 25%;
        right: 25%;
    }
}