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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.9) 0%, rgba(255, 0, 128, 0.9) 100%),
                url('/images/background-01.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-background-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 0, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 0, 128, 0.3) 0%, transparent 50%);
    z-index: 1;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Hero Logo */
.hero-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
    animation: fadeInDown 1s ease-out;
}

.hero-logo img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

/* Hero Images Section */
.hero-images {
    position: relative;
    z-index: 2;
}

.image-showcase {
    position: relative;
    width: 100%;
    height: 600px;
}

.showcase-image {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.showcase-image:hover {
    transform: scale(1.05);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-primary {
    width: 70%;
    height: 450px;
    top: 0;
    left: 0;
    z-index: 2;
    border: 4px solid white;
}

.showcase-secondary {
    width: 60%;
    height: 380px;
    bottom: 0;
    right: 0;
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff0080 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Content Section */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #ffe0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    max-width: 550px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: white;
    color: #ff0080;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    background: #fff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.instagram-icon {
    width: 22px;
    height: 22px;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.about h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #555;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: white;
}

.services h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    color: #333;
}

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

.service-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.service-card p {
    color: #555;
    line-height: 1.6;
}

/* Lifestyle Coaching Section */
.lifestyle-coaching {
    padding: 0;
    background: #000;
    color: white;
    overflow: hidden;
}

.lifestyle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
}

.lifestyle-text {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
}

.lifestyle-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lifestyle-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #ff6b00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.lifestyle-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.lifestyle-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.lifestyle-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.feature-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.feature-text {
    color: #ddd;
}

.btn-lifestyle {
    background: linear-gradient(135deg, #ff6b00 0%, #ff0080 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-lifestyle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6);
}

/* Lifestyle Gallery */
.lifestyle-gallery {
    position: relative;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 1rem;
    padding: 2rem;
    background: #000;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease;
}

.gallery-image:hover img {
    filter: grayscale(80%) contrast(1.2);
}

/* Gallery Layout */
.gallery-1 {
    grid-column: 1 / 8;
    grid-row: 2 / 7;
}

.gallery-2 {
    grid-column: 6 / 13;
    grid-row: 4 / 10;
}

.gallery-3 {
    grid-column: 2 / 9;
    grid-row: 8 / 13;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact .btn-primary {
    background: white;
    color: #667eea;
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 0, 0.3));
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    display: none;
}

.footer-copyright {
    margin: 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

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

.social-links a {
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: rgba(255, 107, 0, 0.3);
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-logo img {
        width: 64px;
        height: 64px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-images {
        order: 2;
    }

    .hero-content {
        order: 1;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .image-showcase {
        height: 500px;
        margin: 0 auto;
        max-width: 500px;
    }

    .showcase-primary {
        width: 75%;
        height: 380px;
    }

    .showcase-secondary {
        width: 65%;
        height: 320px;
    }

    /* Lifestyle Responsive */
    .lifestyle-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .lifestyle-text {
        padding: 4rem 2rem;
    }

    .lifestyle-gallery {
        height: 70vh;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        top: 1.5rem;
        left: 1.5rem;
    }

    .hero-logo img {
        width: 56px;
        height: 56px;
    }

    .hero {
        min-height: auto;
        padding: 3rem 1rem;
        background-attachment: scroll;
    }

    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .image-showcase {
        height: 400px;
    }

    .showcase-primary {
        width: 80%;
        height: 320px;
    }

    .showcase-secondary {
        width: 70%;
        height: 280px;
    }

    .cta-buttons,
    .contact-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about,
    .services,
    .contact {
        padding: 4rem 1rem;
    }

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

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

    .footer-logo {
        justify-content: center;
    }

    /* Lifestyle Mobile */
    .lifestyle-text {
        padding: 3rem 1.5rem;
    }

    .lifestyle-gallery {
        height: 60vh;
        min-height: 400px;
        padding: 1rem;
    }

    .btn-lifestyle {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

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

    .image-showcase {
        height: 350px;
    }

    .showcase-primary {
        width: 85%;
        height: 280px;
    }

    .showcase-secondary {
        width: 75%;
        height: 240px;
    }

    .image-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}
