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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Red Rose', cursive;
    line-height: 1.6;
    color: #333;
    background-color: #FFF0F0;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #260707;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Red Rose', cursive;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #ff6b35;
    color: white;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn:hover {
    opacity: 0.8;
}

/* Header */
.header {
    background: #FFF0F0;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    text-decoration: none;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #260707;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #FFF0F0;
    padding: 4rem 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #260707;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Service Cards */
.services-cards {
    padding: 4rem 0;
    background: #260707;
}

.cards-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.service-card {
    background: #3d2518;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    flex: 1;
    text-align: left;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.service-card li:before {
    content: "•";
    color: #ff6b35;
    position: absolute;
    left: 0;
}

.card-btn {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* About Section */
.about {
    padding: 4rem 0;
    background: #f8f9fa;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #260707;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: #555;
}

.about-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    color: #555;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-primary {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

/* Features Section */
.features {
    padding: 4rem 0;
    background: #FFF0F0;;
}

.features-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.feature-item {
    flex: 1;
    text-align: center;
}

.feature-image {
    margin-bottom: 1.5rem;
}

.feature-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #260707;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #555;
    margin-bottom: 1.5rem;
}

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

.feature-btn:hover {
    color: #e55a2b;
}

/* Bottom Info Section */
.bottom-info {
    padding: 4rem 0;
    background: #260707;
    color: white;
}

.info-grid {
    display: flex;
    gap: 3rem;
}

.info-item {
    flex: 1;
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-item h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.info-item ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.info-item li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 15px;
}

.info-item li:before {
    content: "•";
    color: #ff6b35;
    position: absolute;
    left: 0;
}

.info-item p {
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #FFF0F0;;
}

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

.contact-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #260707;
    margin-bottom: 1rem;
}

.contact-content p {
    color: #555;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Red Rose', cursive;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b35;
}

.btn-submit {
    background: #260707;
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 5px;
    font-family: 'Red Rose', cursive;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #3d2518;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #260707;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid #3d2518;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #f8f9fa;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .hero-content h2 {
        font-size: 2rem;
    }

    .cards-grid {
        flex-direction: column;
    }

    .about-content {
        flex-direction: column;
    }

    .features-grid {
        flex-direction: column;
    }

    .info-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.7rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.7rem;
    }

    .contact-content h2 {
        font-size: 1.7rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}