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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-svg {
    height: 40px;
    width: auto;
    margin-bottom: 0.2rem;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #caba9c;
    margin-bottom: 0.2rem;
}

.logo p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #caba9c;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4a7c59, #6b9b47);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../assets/outdeh-poster.jpg") center/cover;
    opacity: 0.15;
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.event-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.event-details > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.event-details .label {
    font-weight: 600;
    color: #caba9c;
}

.event-details .value {
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.cta-button.primary {
    background: #caba9c;
    color: #2d5016;
    box-shadow: 0 4px 15px rgba(202, 186, 156, 0.3);
}

.cta-button.primary:hover {
    background: #b5a489;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202, 186, 156, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid #caba9c;
    box-shadow: 0 4px 15px rgba(202, 186, 156, 0.2);
}

.cta-button.secondary:hover {
    background: #caba9c;
    color: #2d5016;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202, 186, 156, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.poster-image {
    width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(202, 186, 156, 0.3);
}

.poster-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(202, 186, 156, 0.6);
}

/* About Section */
.about {
    padding: 4rem 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5016;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.fundraising-goal {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.fundraising-goal h3 {
    color: #2d5016;
    margin-bottom: 1rem;
    text-align: center;
}

.goal-meter {
    background: #e9ecef;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.goal-progress {
    background: linear-gradient(90deg, #4a7c59, #6b9b47);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 0%;
}

.goal-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

/* Artists Section */
.artists {
    padding: 4rem 0;
    background: #f8f9fa;
}

.artists h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5016;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.artist-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-card.featured {
    border: 3px solid #caba9c;
    background: linear-gradient(135deg, #fff, #fffbf0);
}

.artist-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 3px solid #e9ecef;
    transition: border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.artist-image span {
    background: linear-gradient(135deg, #4a7c59, #6b9b47);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
}

.artist-card:hover .artist-image {
    border-color: #caba9c;
}

.artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.artist-image-duo {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    width: 120px;
    height: 100px;
}

.artist-image-duo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.artist-card:hover .artist-image-duo img {
    border-color: #caba9c;
    transform: scale(1.05);
}

.artist-card h3 {
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.artist-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.artist-bio {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.8rem;
    border-left: 3px solid #caba9c;
}

.artist-bio p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #555;
    margin-bottom: 0;
}

/* Video Gallery Section */
.video-gallery {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 0;
}

.video-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.video-gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-info p {
    color: #666;
    line-height: 1.5;
    font-size: 1rem;
}

/* Donation Section */
.donate {
    padding: 4rem 0;
    background: white;
}

.donate h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.donate-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.donation-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.donation-amounts h3 {
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.amount-btn {
    padding: 1rem;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: #4a7c59;
    background: #4a7c59;
    color: white;
}

.custom-amount-input input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.custom-amount-input input:focus {
    outline: none;
    border-color: #4a7c59;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

/* Tickets Section */
.tickets-section {
    background: linear-gradient(135deg, #4a7c59, #6b9b47);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
}

.tickets-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #caba9c;
}

.tickets-section > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.ticket-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ticket-tier {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ticket-tier h4 {
    color: #caba9c;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.ticket-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.ticket-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.ticket-tier.sold-out {
    opacity: 0.6;
    position: relative;
}

.ticket-tier.sold-out h4,
.ticket-tier.sold-out .ticket-price,
.ticket-tier.sold-out .ticket-desc {
    text-decoration: line-through;
    opacity: 0.7;
}

.ticket-tier.sold-out::after {
    content: "SOLD OUT";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.ticket-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #caba9c;
    color: #2d5016;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(202, 186, 156, 0.3);
}

.ticket-btn:hover {
    background: #b5a489;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202, 186, 156, 0.4);
}

.ticket-btn .btn-icon {
    width: 20px;
    height: 20px;
}

.ticket-btn .btn-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.ticketing-credit {
    margin-top: 1.5rem;
    text-align: center;
    opacity: 0.8;
}

.ticketing-credit p {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.qrtick-logo {
    height: 30px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.qrtick-logo:hover {
    opacity: 1;
}

.section-divider {
    text-align: center;
    margin: 3rem 0;
    position: relative;
}

.section-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.section-divider span {
    background: #f8f9fa;
    padding: 0 2rem;
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
}

.donation-section {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(
        135deg,
        rgba(74, 124, 89, 0.05),
        rgba(107, 155, 71, 0.05)
    );
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(202, 186, 156, 0.3);
}

.donation-section h3 {
    color: #2d5016;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.donation-section p {
    color: #555;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.payment-option {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #caba9c;
    box-shadow: 0 10px 30px rgba(202, 186, 156, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-option::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4a7c59, #6b9b47);
}

.payment-option:hover {
    border-color: #4a7c59;
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.3);
    transform: translateY(-5px);
}

.payment-option h4 {
    color: #2d5016;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.payment-option p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.payment-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4a7c59, #6b9b47);
    color: white;
    padding: 2rem 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.4);
    width: 100%;
    max-width: 300px;
    position: relative;
    overflow: hidden;
}

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

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

.payment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 124, 89, 0.5);
}

.payment-btn .btn-subtitle {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

.payment-btn.ezee-btn {
    background: linear-gradient(135deg, #4a90e2, #357abd) !important;
    border: none;
    color: white !important;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.25) !important;
}

.payment-btn.ezee-btn:hover {
    background: linear-gradient(135deg, #357abd, #2868a8) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.35) !important;
}

.payment-btn.ezee-btn .btn-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
}

.payment-btn.ezee-btn .btn-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 400;
}

.paypal-button-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.paypal-button-container *,
.paypal-button-container iframe,
.paypal-button-container div {
    z-index: 1 !important;
    position: relative !important;
}

.donation-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.custom-amount-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.custom-amount-section h4 {
    color: #2d5016;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.custom-amount-input {
    margin-top: 1rem;
}

.donation-container {
    text-align: center;
}

.donation-container h3 {
    color: #2d5016;
    margin-bottom: 1rem;
}

.donation-note {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.donation-button-container {
    margin: 2rem 0;
}

.donate-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4a7c59, #6b9b47);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.donate-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}

.donate-now-btn .btn-icon {
    width: 20px;
    height: 20px;
}

.donate-now-btn .btn-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.donation-info-box {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    color: #2d5016;
}

.info-item span {
    color: #666;
}

.donation-footer-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* Icon Styles */
.section-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.btn-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.info-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d5016;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.donate-btn {
    width: 100%;
    background: linear-gradient(135deg, #4a7c59, #6b9b47);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.3);
}

.donation-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.donation-info h4 {
    color: #2d5016;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

.donation-goals {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.donation-goals li {
    background: white;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #caba9c;
}

.donation-goals li strong {
    color: #2d5016;
}

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: white;
    border-radius: 10px;
}

.cost-item.total {
    background: #2d5016;
    color: white;
    font-weight: 600;
}

.budget-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
    font-style: italic;
}

.budget-note small {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Share Section */
.share {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.share h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.share p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.share-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn.copy {
    background: #6c757d;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #2d5016;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #caba9c;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.qrtick-logo-footer {
    height: 25px;
    width: auto;
    margin: 0.5rem 0 1rem 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.qrtick-logo-footer:hover {
    opacity: 1;
}

.footer-section p strong {
    color: #caba9c;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .poster-image {
        width: 250px;
        height: 208px;
        margin: 0 auto;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .donation-options {
        grid-template-columns: 1fr;
    }

    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .payment-options {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }

    .payment-option {
        padding: 2rem 1.5rem;
    }

    .payment-option h4 {
        font-size: 1.3rem;
    }

    .payment-btn,
    .paypal-button-container {
        max-width: 100%;
    }

    .donation-section {
        padding: 2rem 1rem;
    }

    .donation-section h3 {
        font-size: 2rem;
    }

    .donation-section p {
        font-size: 1.1rem;
    }

    .ticket-tiers {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-gallery h2 {
        font-size: 2rem;
    }

    .video-gallery-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .qrtick-logo {
        height: 25px;
    }

    .qrtick-logo-footer {
        height: 20px;
    }

    .donation-container {
        padding: 1rem;
    }

    .donation-info-box {
        margin: 1rem 0;
        padding: 1rem;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .nav {
        display: none;
    }

    .header .container {
        justify-content: center;
    }

    .logo-svg {
        height: 35px;
    }

    .share-buttons {
        flex-direction: column;
        align-items: center;
    }

    .share-btn {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .amount-buttons {
        grid-template-columns: 1fr;
    }

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

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .video-gallery h2 {
        font-size: 1.8rem;
    }

    .video-gallery-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .video-info {
        padding: 1rem;
    }

    .video-info h3 {
        font-size: 1.3rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.artist-card {
    animation: fadeInUp 0.8s ease-out;
}

.donation-item {
    animation: fadeInUp 0.8s ease-out;
}

/* Utility Classes */
.hidden {
    display: none;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.success {
    border-color: #28a745 !important;
    background-color: #f8fff9 !important;
}

.error {
    border-color: #dc3545 !important;
    background-color: #fff8f8 !important;
}

/* Photo Modal */
.photo-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 700px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
}

.modal-close:hover {
    color: #caba9c;
}

.modal-caption {
    color: white;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

/* Make artist images clickable */
.artist-image img,
.artist-image-duo img {
    cursor: pointer;
    transition: all 0.3s ease;
}

.artist-image img:hover,
.artist-image-duo img:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 0 10px;
    }
    
    .modal-close {
        top: -40px;
        font-size: 30px;
    }
    
    .modal-caption {
        font-size: 1rem;
    }
}
