/* GENERAL */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
     color: #8f0909;
}

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

/* HEADER */
header {
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffe6e6;
    color: #8f0909;

}

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

.logo {
    font-weight: bold;
    font-size: 42px;
    text-decoration: none;
    font-family: 'Sacramento', cursive;
    color: #8f0909;
}

header nav button {
    margin-left: 10px;
    padding: 8px 15px;
    border: none;
    background: darkred;
    color: #fff;
    cursor: pointer;
    border-radius: 15px;
}

header nav button:hover {
    background: #a80000;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    background: #ffe6e6;  
    border: none;        
    color: #8f0909;       
    padding: 8px 14px;
    border-radius: 12px;   
    cursor: pointer;
    transition: all 0.2s ease;
}

header nav {
    display: flex;
}

/* Mobile styles */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    header nav {
        display: none;
        flex-direction: column;
        background: #ffe6e6;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    header nav.active {
        display: flex;
    }

    header nav button {
        margin: 10px auto;
        width: 80%;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-img img {
        width: 200px;
        height: 200px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h3 {
        font-size: 18px;
    }

    .service-block {
        padding: 5px !important;   
    }
}


/* HERO / GALLERY */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: #f8f8f8;
}

.hero h1 {
    margin-bottom: 10px;
    font-size: 40px;
    font-family: 'Sacramento', cursive;
    color: #8f0909;
}

.hero h3 {
    margin-bottom: 40px;
    font-weight: normal;
    color: #8f0909;
    font-family: cursive;
}

.gallery {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
}

.slide {
    display: none;
    text-align: center;
}

.caption {
    margin-top: 5px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
}

.arrow.left { left: 10px; }
.arrow.right { right: 10px; }

/* ABOUT */
.about {
    padding: 60px 20px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    font-family: cursive;
}

.about-img img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}

/* SERVICES */
.services {
    padding: 60px 20px;
     background: #ffe6e6;
}

.services-header {
    display: relative;
    align-items: center;
    margin-bottom: 30px;
    font-family: cursive;
    color: #8f0909;
    text-align: center;
}

.services-header h2 {
    margin: 0;                
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; 
}

.service-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pushes price to bottom */
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
}

.service-block h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-family: cursive;
}

.service-block p {
    margin-bottom: 10px;
}

.service-block .price {
    margin-top: 10px;
}

/* CONTACT */
.contact {
    padding: 60px 20px;
    text-align: center;
    background: #ffe6e6;
}

.contact .container {
    max-width: 600px;
    margin: 0 auto;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input, .contact textarea, .contact button {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

.contact button {
    background: darkred;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.contact button:hover {
    background: #a80000;
}

/* FOOTER */
footer {
    background: darkred;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.social-icons a {
    color: #fff;
    margin: 0 5px;
    font-size: 20px;
    text-decoration: none;
}
