/*
Theme Name: EOVO Hair Salon
Description: Ein modernes, minimalistisches WordPress Theme für Hair Salons und kreative Studios, basierend auf dem EOVO HTML Template.
Author: Manus AI
Version: 1.0
Text Domain: eovo
*/

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-12 { width: 100%; padding: 0 15px; }
.col-md-6 { width: 50%; padding: 0 15px; }
.col-md-4 { width: 33.333%; padding: 0 15px; }
.col-md-3 { width: 25%; padding: 0 15px; }

/* Responsive */
@media (max-width: 768px) {
    .col-md-6, .col-md-4, .col-md-3 {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

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

.mainMenu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mainMenu li {
    margin: 0 20px;
}

.mainMenu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mainMenu a:hover {
    color: #007bff;
}

/* Button Styles */
.defaultLink {
    display: inline-block;
    padding: 12px 30px;
    background: #333;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #333;
}

.defaultLink:hover {
    background: transparent;
    color: #333;
}

/* Hero/Slider Styles */
.sliderArea {
    height: 100vh;
    background: url('images/home3/slider.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.sliderArea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.sliderArea .container {
    position: relative;
    z-index: 2;
}

.sliderArea h5 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 2px;
}

.sliderArea h2 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 300;
}

.sliderArea h1 {
    font-size: 72px;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.sectionTitle {
    margin-bottom: 60px;
}

.sectionTitle h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sectionTitle p {
    font-size: 14px;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Skills Section */
.skillsArea {
    background: #f8f9fa;
}

.singleSkill {
    padding: 40px 20px;
}

.singleSkill h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.singleSkill p {
    color: #666;
    line-height: 1.8;
}

/* About Section */
.aboutLeft h3 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.aboutLeft h5 {
    font-size: 14px;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.aboutLeft p {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.aboutRight img {
    width: 100%;
    height: auto;
}

/* Portfolio Section */
.portfolioInner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolioItem {
    text-align: center;
}

.portfolioItem img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolioItem:hover img {
    transform: scale(1.05);
}

.portfolioItem h5 {
    margin-top: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Call to Action */
.callToTwoArea {
    background: url('images/home3/calltoaction.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    position: relative;
}

.callToTwoArea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.callToTwoInner {
    position: relative;
    z-index: 2;
}

.callToTwoInner h2 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.callToTwoInner h5 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Art Work Section */
.artWorkLeft {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.artWorkItem img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.artWorkRight img {
    width: 100%;
    height: auto;
}

/* News Section */
.singleNews {
    display: flex;
    margin-bottom: 30px;
}

.newsImg {
    flex: 0 0 200px;
    margin-right: 30px;
}

.newsImg img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.newsContent h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 1.3;
}

.newsContent p {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 40px 0 20px;
}

.instegram {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.instegram img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.copyText {
    font-size: 12px;
    color: #999;
}

.copyText a {
    color: #fff;
    text-decoration: none;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.pull-left { float: left; }
.pull-right { float: right; }
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Back to Top */
#backtotop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1000;
}

#backtotop:hover {
    background: #007bff;
    transform: translateY(-5px);
}



/* Additional Image Styles */
.aboutRight {
    background: url('images/home3/about.jpg') center/cover no-repeat;
    min-height: 400px;
    border-radius: 5px;
}

.artWorkItem img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artWorkItem:hover img {
    transform: scale(1.05);
}

/* Client Logos */
.clientLogos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.clientLogos img {
    max-height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.clientLogos img:hover {
    opacity: 1;
}

/* Portfolio Grid */
.portfolioGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.portfolioGrid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolioGrid img:hover {
    transform: scale(1.05);
}

/* News Section */
.newsItem img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Feature Section */
.featureItem img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .clientLogos {
        justify-content: center;
    }
    
    .portfolioGrid {
        grid-template-columns: 1fr;
    }
    
    .aboutRight {
        min-height: 300px;
        margin-top: 30px;
    }
}

