/* =============================================
   MEMORIES PARTY HALL - MAIN STYLESHEET
   Color Scheme: Black (#000000), Pink (#FF1493), Purple (#9D4EDD)
   ============================================= */

/* === ROOT VARIABLES === */
:root {
    --color-black: #000000;
    --color-pink: #FF1493;
    --color-pink-light: #FF69B4;
    --color-purple: #9D4EDD;
    --color-purple-light: #C77DFF;
    --color-white: #FFFFFF;
    --color-gray: #333333;
    --color-gray-light: #666666;
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Montserrat', sans-serif;
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* === HEADER STYLES === */
.main-header {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(157,78,221,0.1) 100%);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--color-pink);
}

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

.logo h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-pink);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 0.9rem;
    color: var(--color-purple-light);
    font-style: italic;
}

/* === NAVIGATION === */
.main-nav {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-pink);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

.nav-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-pink) 0%, var(--color-purple) 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

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

/* === MAIN CONTENT === */
.main-content {
    min-height: calc(100vh - 300px);
}

/* === HERO SECTION === */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: url('../images/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark overlay to ensure text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

/* Floating pink gradient circle */
.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,20,147,0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

/* Add another floating gradient circle */
.hero .hero-content::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(157,78,221,0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -300px;
    left: -200px;
    animation: float 8s ease-in-out infinite reverse;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 2px 8px rgba(255,20,147,0.4);
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(255,20,147,0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,20,147,0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-pink);
    box-shadow: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    box-shadow: 0 10px 30px rgba(255,20,147,0.3);
}

/* === SECTION STYLES === */
.section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-purple-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === FEATURES/CARDS === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255,20,147,0.05) 0%, rgba(157,78,221,0.05) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,20,147,0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-pink);
    box-shadow: 0 20px 40px rgba(255,20,147,0.2);
}

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

.feature-card h3 {
    color: var(--color-pink);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--color-white);
    line-height: 1.8;
}

/* === GALLERY === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,20,147,0.3) 0%, rgba(157,78,221,0.3) 100%);
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255,20,147,0.2);
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--color-pink);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--color-pink);
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 20, 147, 0.3);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--color-white);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--color-pink);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
    font-size: 40px;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    background: rgba(255, 20, 147, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 20, 147, 0.5);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 1.2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    max-width: 80%;
}

/* === CALENDAR === */
.calendar-container {
    background: linear-gradient(135deg, rgba(255,20,147,0.05) 0%, rgba(157,78,221,0.05) 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255,20,147,0.2);
    text-align: center;
}

.calendar-placeholder {
    padding: 4rem 2rem;
}

.calendar-placeholder h3 {
    color: var(--color-pink);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.calendar-placeholder p {
    color: var(--color-purple-light);
    font-size: 1.1rem;
}

/* === CONTACT INFO === */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255,20,147,0.05) 0%, rgba(157,78,221,0.05) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,20,147,0.2);
}

.contact-card h3 {
    color: var(--color-pink);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: var(--color-white);
    line-height: 1.8;
}

.contact-card a {
    color: var(--color-purple-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--color-pink);
}

/* === CONTACT FORM STYLING === */
.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF1493' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem !important;
    cursor: pointer;
}

.contact-form select:hover {
    border-color: var(--color-pink) !important;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--color-pink) !important;
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.2) !important;
}

.contact-form select option {
    background-color: #1a1a1a;
    color: var(--color-white);
    padding: 0.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    font-family: var(--font-primary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
}

.contact-form label {
    cursor: pointer;
}

/* === FOOTER === */
.main-footer {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(157,78,221,0.1) 100%);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
    border-top: 2px solid var(--color-pink);
}

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

.footer-section h3 {
    color: var(--color-pink);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--color-white);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-link {
    color: var(--color-white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255,20,147,0.1);
    border-radius: 5px;
    border: 1px solid rgba(255,20,147,0.3);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    border-color: var(--color-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,20,147,0.2);
    color: var(--color-gray-light);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .header-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: nowrap;
        position: relative;
    }
    
    .logo {
        flex: 1 1 auto;
        min-width: 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    .main-nav {
        flex: 0 0 auto;
        position: static;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex: 0 0 auto;
        margin-left: 1rem;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100vw;
        gap: 0;
        background: rgba(0,0,0,0.98);
        position: fixed;
        top: calc(var(--header-height, 100px));
        left: 0;
        right: 0;
        padding: 1rem;
        border-radius: 0;
        border-top: 1px solid var(--color-pink);
        box-shadow: 0 4px 6px rgba(255, 20, 147, 0.3);
        z-index: 999;
        max-height: calc(100vh - var(--header-height, 100px));
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 20, 147, 0.2);
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .gallery-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    /* Contact form mobile adjustments */
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    /* Lightbox mobile adjustments */
    .lightbox {
        padding: 20px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        padding: 8px 15px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

