:root {
    --primary-color: #ff6b6b;
    --accent-color: #ffd166;
    --secondary-color: #48cae4;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

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

header {
    padding: 2rem 0;
}

.logo {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-block;
}

.nav-toggle {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.nav {
    padding: 1rem 0;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.shape {
    position: absolute;
    z-index: 0;
}

.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--accent-color);
    top: 5%;
    right: -100px;
}

.x-shape {
    width: 80px;
    height: 80px;
    font-size: 5rem;
    top: 15%;
    left: 5%;
    color: var(--secondary-color);
}

.wave {
    width: 80px;
    height: 20px;
    right: 10%;
    bottom: 30%;
}

.title-small {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.title-large {
    font-size: 8rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.striped-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: repeating-linear-gradient(45deg,
            var(--primary-color),
            var(--primary-color) 5px,
            rgba(255, 255, 255, 0.5) 5px,
            rgba(255, 255, 255, 0.5) 10px);
    position: absolute;
    bottom: 15%;
    left: 20%;
    z-index: 1;
}

.social-links {
    position: absolute;
    right: 5%;
    bottom: 10%;
    z-index: 1;
}

.social-links p {
    margin-bottom: 0.5rem;
    text-align: right;
    font-size: 0.8rem;
}

.gallery {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-title {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: var(--dark-color);
}

.gallery-item-description {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer {
    padding: 4rem 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
}

.back-home {
    display: inline-block;
    margin-top: 2rem;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.back-home:hover {
    background-color: var(--accent-color);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .title-large {
        font-size: 4rem;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .circle {
        width: 200px;
        height: 200px;
    }
}