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

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #FFD700;
    --bronze: #CD7F32;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --text-light: #ffffff;
    --text-gold: #D4AF37;
    --gradient-primary: linear-gradient(135deg, #8B5CF6, #EC4899);
    --gradient-secondary: linear-gradient(135deg, #D4AF37, #FFD700);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --transition: all 0.3s ease;
}

html, body {
    opacity: 1 !important;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 1 !important;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: none;
    object-fit: contain;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}


.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.ornate-design {
    position: relative;
    display: inline-block;
}

.hero-barber-pole {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.hero-logo-img {
    width: 400px;
    height: 400px;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
    object-fit: contain;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    line-height: 1.2;
}

.title-line-1 {
    display: block;
    font-size: 2rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.title-line-2 {
    display: block;
    font-size: 3.5rem;
    letter-spacing: 0.1em;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.title-line-3 {
    display: block;
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
}

/* Welcome Section */
.welcome {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.welcome-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.3;
}

.welcome-text-1 {
    display: block;
    color: #EC4899;
    margin-bottom: 0.5rem;
}

.welcome-text-2 {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.welcome-text-3 {
    display: block;
    color: #3B82F6;
}

/* Slideshow Section */
.slideshow-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-gold);
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.slideshow-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.slideshow {
    position: relative;
    width: 100%;
    height: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.prev-btn, .next-btn {
    background: #D4AF37;
    color: var(--darker-bg);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--primary-gold);
    transform: scale(1.1);
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #808080;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* Barber Profile */
.barber-profile {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.profile-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.profile-image img:hover {
    transform: scale(1.02);
}

.profile-info {
    padding: 2rem 0;
}

.profile-name {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.profile-title {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    opacity: 1;
}

.profile-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #ffffff;
}

.profile-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    min-width: 150px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--darker-bg);
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--dark-bg);
}

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

.service-item {
    background: #3a3a3a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #D4AF37;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    background: #4a4a4a;
    box-shadow: var(--shadow-gold);
}

.service-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.service-item p {
    color: #ffffff;
    line-height: 1.6;
}

/* Hours & Location */
.hours-location {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.hours-list {
    background: #3a3a3a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #D4AF37;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #D4AF37;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--primary-gold);
}

.time {
    color: var(--text-light);
}

.location-details {
    background: #3a3a3a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #D4AF37;
}

.map-container {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.map-container iframe {
    transition: var(--transition);
}

.map-container iframe:hover {
}

.address {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.phone {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.building-access, .parking-info {
    margin-bottom: 2rem;
}

.building-access h3, .parking-info h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
}

.parking-info ul {
    list-style: none;
    padding-left: 0;
}

.parking-info li {
    padding: 0.3rem 0;
    color: #ffffff;
    position: relative;
    padding-left: 1.5rem;
}

.parking-info li::before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0;
    border-top: 1px solid #D4AF37;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 30px;
    height: 30px;
}

.footer-logo span {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    font-weight: 600;
}

.footer-info {
    text-align: right;
    color: #ffffff;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .title-line-1 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .title-line-2 {
        font-size: 2.5rem;
        margin-bottom: 0.3rem;
    }
    
    .title-line-3 {
        font-size: 2rem;
    }
    
    .hero-title {
        line-height: 1.2;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .profile-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .slideshow {
        height: 300px;
    }
    
    .profile-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-barber-pole {
        width: 80px;
        height: 80px;
    }
    
    .hero-logo-img {
        width: 250px;
        height: 250px;
    }
    
    .title-line-1 {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
    
    .title-line-2 {
        font-size: 2rem;
        margin-bottom: 0.2rem;
    }
    
    .title-line-3 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        line-height: 1.1;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 120px;
    }
    
    .slideshow-controls {
        padding: 0 10px;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

