/* EventPlanner.quest Global Styles */

:root {
    --primary-color: #8B5CF6;
    --secondary-color: #EC4899;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --background: #FFFFFF;
    --background-alt: #F9FAFB;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
}

/* Header & Navigation */
header {
    background: var(--background);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Service Grid */
.service-grid, .package-grid, .venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card, .package, .venue {
    background: var(--background-alt);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3, .package h3, .venue h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* Service Details */
.service-detail {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--background-alt);
    border-radius: 10px;
}

.service-detail ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.service-detail li {
    margin-bottom: 0.5rem;
}

/* Benefits */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit {
    text-align: center;
    padding: 1.5rem;
}

.benefit h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Location List */
.location-list, .area-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    list-style: none;
    margin-top: 1rem;
}

.location-list a, .area-list li {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s, color 0.3s;
}

.location-list a:hover {
    background: var(--primary-color);
    color: white;
}

/* Tips Section */
.tips, .wedding-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tips article, .wedding-tips article {
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: 10px;
}

/* Testimonials */
.testimonials {
    background: var(--background-alt);
    border-radius: 10px;
    padding: 3rem;
}

blockquote {
    margin: 2rem 0;
    padding: 1rem;
    border-left: 4px solid var(--primary-color);
}

blockquote p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

blockquote cite {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta .cta-button {
    background: white;
    color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem;
}

footer nav {
    margin-top: 1rem;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .service-grid, .package-grid, .venue-grid {
        grid-template-columns: 1fr;
    }
}