@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Variables */
:root {
    --primary-color: #3a506b;
    --secondary-color: #5d5c61;
    --accent-color: #1d7d81;
    --dark-color: #2b2d42;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    position: relative;
    background-image:url(../img/diana-polekhina-fondoCostura.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.92);
    z-index: -1;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1.6rem;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Header */
header {
    background-image:url(../img/merve-sehirli-botones.jpg);
    background-repeat: no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    padding-left: 20px;
}

.logo-container h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.tagline {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
    margin-bottom: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-right: 55px;
}

nav ul li:last-child {
    margin-right: 2;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1.4rem;
    padding: 8px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding-right: 20px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero .lead {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--gray-color);
}
.aviso{
    font-size: 1.3rem;
    margin: 2 auto 30px;
   color: var(--primary-color);
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background-color: white;
}

.welcome .container {
    max-width: 900px;
}

.welcome h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.welcome p {
    font-size: 1.2rem;
    text-align: center;
}

.eco-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 15px 25px;
    background-color: var(--accent-color);
    border-radius: 40px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.eco-badge i {
    margin-right: 10px;
    font-size: 1.3rem
}

.eco-badge span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.info-card {
    flex: 1 1 300px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    margin-bottom: 15px;
}

.map {
    height: 200px;
    margin-top: 20px;
    background-color: #eee;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
    background-image:url(../img/merve-sehirli-botones.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}

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

.footer-logo h3 {
    color: white;
    margin-bottom: 5px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 3px solid rgb(106, 84, 84);
    color: var(--primary-color);
}

.footer-bottom p {
    font-size: 1.1rem;
    color: rgba(243, 239, 239, 0.7);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .hero h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgb(227, 244, 186);
        width: 100%;
        padding: 20px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease;
    }

    nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .welcome {
        padding: 60px 0;
    }

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

    .footer-social {
        margin-top: 20px;
    }

    .footer-social a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }

    .hero {
        padding: 50px 0;
    }

    .welcome p {
        font-size: 1rem;
    }

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