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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 50%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
    margin-bottom: 20px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.subtitle {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px;
    align-items: center;
}

/* Image Styles */
.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.image-container:hover {
    transform: scale(1.03);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: all 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(240, 147, 251, 0.2) 0%, rgba(245, 87, 108, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

/* Content Section */
.content-section {
    padding: 20px;
}

.power-statement h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.power-statement h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    border-radius: 2px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

/* Attributes */
.attributes {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.attribute-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    border-radius: 15px;
    color: white;
    transform: translateY(0);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.attribute-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.attribute-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.attribute-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Quote Section */
.quote-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 15px;
    margin-top: 40px;
}

.quote-section blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.quote-section blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -30px;
    color: rgba(255, 255, 255, 0.3);
}

.quote-section cite {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Community Section Styles */
.community-section, .gallery-section, .social-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 60px;
    margin: 40px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Community Grid */
.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.newsletter-signup, .supporter-board {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.newsletter-signup h3, .supporter-board h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.signup-form {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.signup-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    min-width: 200px;
}

.signup-form button, .view-all-btn {
    padding: 12px 25px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-form button:hover, .view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 147, 251, 0.4);
}

.subscriber-count {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 15px;
}

.subscriber-count span {
    font-weight: bold;
    color: #ffd700;
    font-size: 1.1rem;
}

/* Message Board */
.message-preview {
    text-align: left;
    margin: 20px 0;
}

.message-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid #ffd700;
}

.message-item strong {
    color: #ffd700;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.gallery-item, .gallery-placeholder {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    min-height: 250px;
    transition: transform 0.3s ease;
}

.gallery-item:hover, .gallery-placeholder:hover {
    transform: scale(1.02);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.placeholder-content {
    padding: 20px;
}

.placeholder-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

/* Social Section */
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.social-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
}

.social-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.update-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid #ffd700;
}

.update-date {
    font-size: 0.8rem;
    color: #ffd700;
    font-weight: bold;
}

.share-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.share-btn {
    padding: 12px;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.professional-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.professional-links h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Portfolio Section */
.portfolio-section, .business-section, .merchandise-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 60px;
    margin: 40px 0;
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: linear-gradient(45deg, #f093fb, #f5576c);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 147, 251, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.02);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-tag {
    background: #ffd700;
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Media Features */
.media-features {
    display: grid;
    gap: 20px;
}

.media-item {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    border-radius: 15px;
    color: white;
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: translateX(10px);
}

.media-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    min-width: 60px;
}

.media-content h4 {
    color: #ffd700;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.media-date {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.achievement-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-8px);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.achievement-card h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Business Section */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.service-card h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-list {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.service-list li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-list li::before {
    content: '✨ ';
    color: #ffd700;
}

.service-btn, .merch-btn {
    background: linear-gradient(45deg, #f093fb, #f5576c);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.service-btn:hover, .merch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 147, 251, 0.4);
}

/* Merchandise Section */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.merch-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.merch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.merch-image {
    margin-bottom: 15px;
}

.merch-placeholder {
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.merch-icon {
    font-size: 3rem;
}

.merch-item h4 {
    color: #2c3e50;
    margin: 15px 0 10px 0;
    font-size: 1.2rem;
}

.merch-price {
    color: #f5576c;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    text-align: center;
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 40px;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(240, 147, 251, 0.1), rgba(245, 87, 108, 0.1));
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

/* Animations */
@keyframes titleGlow {
    0% {
        text-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
    }
    100% {
        text-shadow: 0 4px 30px rgba(245, 87, 108, 0.5);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .power-statement h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 10px;
    }
    
    .community-grid, .social-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .community-section, .gallery-section, .social-section {
        padding: 30px 20px;
    }
    
    .signup-form {
        flex-direction: column;
    }
    
    .signup-form input {
        min-width: auto;
    }
    
    .share-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 20px;
    }
    
    .power-statement h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .community-section, .gallery-section, .social-section, 
    .portfolio-section, .business-section, .merchandise-section {
        padding: 20px 15px;
    }
    
    .portfolio-tabs {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .tab-btn {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .business-grid, .merch-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .media-item {
        flex-direction: column;
        text-align: center;
    }
    
    .media-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Form Styles */
.booking-form, .contact-form {
    display: grid;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-row input, .form-row select, 
.booking-form textarea, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.booking-form button, .contact-form button {
    background: linear-gradient(45deg, #f093fb, #f5576c);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
}

.booking-form button:hover, .contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 147, 251, 0.4);
}

/* Merchandise Detail Modal */
.merch-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
}

.merch-detail-image .merch-placeholder {
    height: 200px;
}

.merch-detail-price {
    font-size: 1.5rem;
    color: #f5576c;
    font-weight: bold;
    margin: 10px 0;
}

.merch-detail-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.merch-features h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.merch-features ul {
    list-style: none;
    margin-bottom: 15px;
}

.merch-features li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.merch-features li::before {
    content: '✨ ';
    color: #f5576c;
}

.merch-sizes {
    color: #666;
    margin-bottom: 20px;
}

.merch-actions {
    display: flex;
    gap: 10px;
}

.merch-btn.primary {
    background: linear-gradient(45deg, #28a745, #20c997);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .merch-detail {
        grid-template-columns: 1fr;
    }
    
    .merch-actions {
        flex-direction: column;
    }
}