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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.highlight {
    color: #ff6b35;
    -webkit-text-stroke: 2px #ff6b35;
    -webkit-text-fill-color: transparent;
    text-stroke: 2px #ff6b35;
    text-fill-color: transparent;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ff6b35;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid #ff6b35;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-logo img {
    height: 40px;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-cta .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ff6b35;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about {
    background: #f5f5f5;
    padding: 80px 0;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.about-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Philosophy Section */
.philosophy {
    background: #f5f5f5;
    padding: 60px 0;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-weight: 500;
}

/* Orange Banner */
.orange-banner {
    background: #ff6b35;
    padding: 20px 0;
    overflow: hidden;
}

.banner-content {
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.banner-content span {
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    display: inline-block;
    padding-right: 100px;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Saloon Section */
.saloon {
    background: #f5f5f5;
    padding: 80px 0;
}

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

.saloon-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location {
    font-weight: 600;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.saloon-description {
    color: #666;
    line-height: 1.8;
}

.saloon-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.saloon-img-1,
.saloon-img-2 {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.saloon-img-1 {
    grid-column: 1 / -1;
    height: 300px;
}

/* Payment Section */
.payment {
    background: #f5f5f5;
    padding: 80px 0;
}

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

.payment-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.payment-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.payment-text {
    color: #666;
    line-height: 1.8;
}

/* Reserve Section */
.reserve {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.reserve-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.reserve-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.reserve-content {
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.reserve-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.reserve-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Team Section */
.team {
    background: #2c3e50;
    color: white;
    padding: 80px 0;
}

.team .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.team-member:hover img {
    filter: grayscale(0%);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.team-member p {
    color: #ff6b35;
    font-weight: 500;
}

/* Work Section */
.work {
    background: #2c3e50;
    color: white;
    padding: 80px 0;
}

.work .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.work-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.work-gallery img:hover {
    transform: scale(1.05);
}

/* Vouchers Section */
.vouchers {
    background: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.vouchers .section-title {
    margin-bottom: 2rem;
}

.vouchers-text {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.8;
}

/* Loyalty Section */
.loyalty {
    background: #f5f5f5;
    padding: 80px 0;
}

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

.loyalty-images {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 200px;
    height: 400px;
    background: #333;
    border-radius: 30px;
    padding: 20px;
    position: relative;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.loyalty-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.loyalty-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-store-btn,
.google-play-btn {
    display: inline-block;
    background: #333;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.app-store-btn:hover,
.google-play-btn:hover {
    background: #555;
}

/* Contact Section */
.contact {
    background: #f5f5f5;
    padding: 80px 0;
}

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

.contact-info .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-weight: 600;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 1rem;
    color: #666;
}

.social-media {
    margin-top: 2rem;
}

.social-media p {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #666;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #e55a2b;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
}

.contact-map iframe {
    border-radius: 10px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #ccc;
}

.footer-menu h3,
.footer-social h3 {
    margin-bottom: 20px;
    color: white;
}

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

.footer-menu li {
    margin-bottom: 10px;
}

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

.footer-menu a:hover {
    color: #ff6b35;
}

.footer-social .social-icons {
    display: flex;
    gap: 20px;
}

/* Bottom Banner */
.bottom-banner {
    background: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .saloon-grid,
    .payment-grid,
    .loyalty-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .saloon-images {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .work-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
