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

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--bg-color-1);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Color Variables - Dark Green & White Theme */
:root {
    --bg-color-1: #1D2B3A;
    --bg-color-2: #2C3E50;
    --primary-color: #3498DB;
    --secondary-color: #E74C3C;
    --accent-color: #F1C40F;
    --white-color: #FFFFFF;
    --text-color: #E0E0E0;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.2);
}

/* Animated Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #777777, #454242, #dadada);
    background-size: 400% 400%;
    animation: gradientAnimation 8s ease infinite;
    overflow: hidden;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 15s infinite linear;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 0%;
    right: 15%;
    animation-delay: -5s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.9;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.5;
    }
}

/* Container */
.container {
    /* max-width: 400px; */
    /* margin: 0 auto; */
    padding: 0 2rem;
    text-align: center;
}

#facebook-iframe {
    padding: 0;
}

/* Logo Section */
.logo-section {
    padding: 30px 0;
    margin-bottom: 30px;
}

.salon-name {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #b49800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease forwards;
}

.tagline {
    font-size: 1.2rem;
    color: #bc9e00;
    font-weight: 400;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Location Selector */
.location-selector {
    margin-bottom: 40px;
}

.location-selector h2 {
    font-size: 1.3rem;
    color: var(--white-color);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Location Cards */
.location-card {
    /* background-image: url('image.png'); */
    background-size: cover;
    background-position: center;
    background-color: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 32px 0 var(--shadow-color);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
}

.location-card:nth-child(2) { animation-delay: 0.2s; }
.location-card:nth-child(3) { animation-delay: 0.4s; }
.location-card:nth-child(4) { animation-delay: 0.6s; }

.location-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.location-card h3.location-title {
    font-size: 1.4rem;
    color: var(--white-color);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.location-content {
    /* display: flex; */
    flex-direction: row;
    gap: 15px;
}

.location-column {
    justify-content: center;
    padding: 10px;
    display: flex;
    flex: 1;
}

.location-column iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}


/* Button Group */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.location-card iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

.btn i {
    font-size: 1rem;
}

.btn-facebook {
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.btn-facebook:hover {
    background: #2980B9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.btn-maps {
    background: var(--accent-color);
    color: #000000;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-maps:hover {
    background: #D4AC0D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-color);
}

.btn-tiktok {
    background: var(--secondary-color);
    color: var(--white-color);
    box-shadow: 0 5px 20px var(--shadow-color);
    font-size: 1.1rem;
    padding: 15px 30px;
}

.btn-tiktok:hover {
    background: #C0392B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.location-details {
    margin-bottom: 15px;
}

.location-details p {
    color: var(--white-color);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.location-details a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-details a:hover {
    color: var(--white-color);
}

/* TikTok Section */
.tiktok-section {
    margin-bottom: 40px;
    padding: 25px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--card-border);
}

.tiktok-section h2 {
    font-size: 1.3rem;
    color: var(--white-color);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    color: var(--white-color);
    text-align: center;
    /* margin: 40px 0px; */
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 15px;
        max-width: 350px;
    }
    
    .salon-name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .location-selector h2 {
        font-size: 1.1rem;
    }
    
    .location-card {
        padding: 15px;
    }
    
    .location-card h3 {
        font-size: 1.2rem;
    }
    
    .button-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .btn-tiktok {
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .tiktok-section h2 {
        font-size: 1.1rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 10px;
        max-width: 320px;
    }
    
    .salon-name {
        font-size: 1.8rem;
    }
    
    .location-card {
        padding: 12px;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

/* Loading Animation */
body {
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out 0.2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Active states for touch devices */
.btn:active {
    transform: scale(0.95);
}

.location-card:active {
    transform: scale(0.98);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo h2 {
    font-family: 'Playfair Display', serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

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

/* Container */
.container {
    max-width: 1200px;
    /* margin: 0 auto; */
    /* padding: 0 2rem; */
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 2rem 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-title .line:nth-child(1) {
    animation-delay: 0.2s;
    color: var(--dark-color);
}

.hero-title .line:nth-child(2) {
    animation-delay: 0.4s;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
}

.hero-title .line:nth-child(3) {
    animation-delay: 0.6s;
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

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

.image-placeholder {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

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

/* Sections */
.services, .about, .contact {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Services */
.services {
    background: linear-gradient(135deg, #f8f3f0, #fff5f5);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--dark-color);
}

.feature i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.about-image .image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f0f8ff, #fff5f5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-item p {
    color: #666;
}

.map-placeholder {
    background: var(--gradient-2);
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Social Media */
.social-media {
    background: var(--dark-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.social-media h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.tiktok:hover {
    background: #000;
}

.social-link.maps:hover {
    background: #4285f4;
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 1rem 50px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .line:nth-child(2) {
        font-size: 3rem;
    }
    
    .hero-title .line:nth-child(3) {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .line:nth-child(2) {
        font-size: 2.5rem;
    }
    
    .hero-title .line:nth-child(3) {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
