/* Party With Ashley - Main Stylesheet */

/* ===== CSS Variables ===== */
:root {
    --primary-pink: #FF69B4;
    --text-dark: #111111;
    --text-gray: #666666;
    --bg-white: #FFFFFF;
    --bg-light: #F9F9F9;
    --border-light: #E5E5E5;
    --hover-pink: #FF85C1;
    --font-main: 'Inter', sans-serif;
}

/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* ===== Header ===== */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-pink);
}

.cta-link {
    background: var(--primary-pink);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.cta-link:hover {
    background: var(--hover-pink);
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.social-links a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--text-dark);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-pink);
    color: white;
}

.btn-primary:hover {
    background: var(--hover-pink);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

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

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
}

.btn-lg {
    padding: 18px 45px;
    font-size: 18px;
}

/* ===== Credibility Strip ===== */
.credibility {
    background: var(--bg-light);
    padding: 40px 0;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.credibility-item i {
    font-size: 32px;
    color: var(--primary-pink);
    margin-bottom: 10px;
}

.credibility-item p {
    font-weight: 600;
    font-size: 14px;
}

/* ===== Section Titles ===== */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

/* ===== Services Preview ===== */
.services-preview {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
}

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

.service-card i {
    font-size: 48px;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ===== How It Works ===== */
.how-it-works {
    background: var(--bg-light);
    padding: 80px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.step p {
    color: var(--text-gray);
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--primary-pink);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-pink);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* ===== Page Header ===== */
.page-header {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-gray);
}

/* ===== Gallery ===== */
.gallery-section {
    padding: 60px 0;
}

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

.gallery-grid.best-of {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 15px;
    font-size: 14px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ===== Services Detail ===== */
.services-detail {
    padding: 60px 0;
}

.service-block {
    background: var(--bg-white);
    padding: 50px 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    border: 2px solid var(--border-light);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.service-block h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-block p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

/* ===== Process Timeline ===== */
.process-timeline {
    background: var(--bg-light);
    padding: 80px 0;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.timeline-item {
    text-align: center;
}

.timeline-number {
    width: 70px;
    height: 70px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.timeline-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.timeline-item p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ===== Corporate Sections ===== */
.corporate-why {
    padding: 60px 0;
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.corporate-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid var(--border-light);
    text-align: center;
}

.corporate-card i {
    font-size: 48px;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.corporate-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.corporate-card p {
    color: var(--text-gray);
    font-size: 15px;
}

.event-types {
    background: var(--bg-light);
    padding: 80px 0;
}

.event-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.event-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.event-item i {
    font-size: 36px;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.event-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.event-item p {
    color: var(--text-gray);
    font-size: 15px;
}

.corporate-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
}

.step-num {
    width: 70px;
    height: 70px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ===== Typeform Section ===== */
.typeform-section {
    padding: 60px 0;
}

.typeform-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--border-light);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary-pink);
    font-size: 20px;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== Contact Cards ===== */
.contact-cards {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-light);
}

.contact-card i {
    font-size: 48px;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-card a {
    color: var(--primary-pink);
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.8;
}

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

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

.footer-social a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-pink);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--hover-pink);
    transform: translateY(-5px);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        padding: 20px 0;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        padding: 12px 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

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

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

    .logo img {
        height: 50px;
    }
}