/* HOME PAGE - NO BLACK, VISIBLE BACKGROUNDS, COMPACT NAV */

.hero-section {
    height: 100vh !important;
    min-height: 100vh !important;
}

/* Events */
.event-card {
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.event-card:hover {
    transform: scale(1.05);
}

.event-card-la {
    background-image: url('https://static.wixstatic.com/media/d9e883_78ee711de1574a2399f639a10c57ee2d~mv2.jpg');
}

.event-card-sv {
    background-image: url('https://static.wixstatic.com/media/d9e883_78ee711de1574a2399f639a10c57ee2d~mv2.jpg');
}

.event-card-van {
    background-image: url('https://static.wixstatic.com/media/d9e883_ac6c84bee2bd467fa4b5f5bb0a7e52a2~mv2.jpg');
}

/* Banner - NO BLACK, use dark gray */
.home-banner-section {
    background-image: url('https://static.wixstatic.com/media/d9e883_78ee711de1574a2399f639a10c57ee2d~mv2.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    position: relative;
}

.home-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(51, 51, 51, 0.3);
}

.home-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.home-banner-content h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 30px;
}

/* Tickets */
.home-tickets-section {
    padding: 80px 20px;
    background-image: url('https://static.wixstatic.com/media/d9e883_b90c900125414dfc9ea1af9cb04722ff~mv2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.home-tickets-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.85);
    z-index: 0;
}

.home-tickets-section .container {
    position: relative;
    z-index: 1;
}

.home-tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .home-tickets-grid {
        grid-template-columns: 1fr;
    }
    .home-ticket-card img {
        height: 260px;
    }
    .home-ticket-card-content {
        padding: 28px 24px;
    }
}

.home-ticket-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.home-ticket-card:hover {
    transform: translateY(-10px);
}

.home-ticket-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.home-ticket-card:hover img {
    transform: scale(1.1);
}

.home-ticket-card-content {
    padding: 40px;
    text-align: center;
}

/* Stats */
.home-stats-section {
    padding: 100px 20px;
    background-image: url('https://static.wixstatic.com/media/d9e883_0f5e8e6788ee4a6da700d280029827d5~mv2.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.home-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.85);
}

.home-stats-section .container {
    position: relative;
    z-index: 1;
}

.home-stats-section h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.home-stats-intro {
    font-size: 20px;
    color: #666;
    max-width: 900px;
    margin: 0 auto 50px;
}

.home-stats-year {
    font-size: 72px;
    font-weight: 700;
    color: #d4a574;
    margin: 40px 0;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto;
}

.home-stat-item h3 {
    font-size: 48px;
    color: #d4a574;
    margin-bottom: 10px;
}

.home-stat-item p {
    font-size: 16px;
    color: #666;
}

/* Engaged - NO BLACK, use dark brown */
.home-engaged-section {
    background-image: url('https://static.wixstatic.com/media/d9e883_4ff67bcad8d7473cb1ad2cf65ad2fe3c~mv2.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    position: relative;
}

.home-engaged-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(70, 50, 40, 0.4);
}

.home-engaged-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.home-engaged-content h2,
.home-engaged-content h3,
.home-engaged-content p {
    color: #fff;
}

.home-engaged-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.home-engaged-content h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 400;
}

.home-engaged-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Newsletter */
.home-newsletter-section {
    padding: 80px 20px;
    background-image: url('https://static.wixstatic.com/media/d9e883_46621c5b79a44eb693cd5739de48e34c~mv2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.home-newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.85);
}

.home-newsletter-section .container {
    position: relative;
    z-index: 1;
}

.home-newsletter-grid {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.home-newsletter-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.home-newsletter-grid img:hover {
    transform: scale(1.05);
}

.home-newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.home-newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.home-newsletter-form input {
    width: 100%;
    max-width: 300px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

/* Posters - MORE VISIBLE BACKGROUND */
.home-posters-section {
    background-image: url('https://static.wixstatic.com/media/d9e883_e5518fc9233c4f66a636a38fde24bf71~mv2.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    position: relative;
}

.home-posters-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(70, 50, 40, 0.5);
}

.home-posters-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.home-posters-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.home-poster-item img {
    width: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

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

.home-poster-text {
    color: #fff;
    font-size: 72px;
    font-weight: 700;
    margin: 20px 0;
}

.home-poster-date {
    color: #fff;
    font-size: 24px;
    margin: 10px 0;
}

.home-poster-city {
    color: #d4a574;
    font-size: 32px;
    font-weight: 700;
}

.home-anniversary {
    color: #fff;
    font-size: 48px;
    text-align: center;
    margin-top: 40px;
}

/* As Seen On */
.home-media-section {
    padding: 80px 20px;
    background-image: url('https://static.wixstatic.com/media/d9e883_e8553d5756c84714834dbe58e3e9a63a~mv2.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.home-media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.90);
}

.home-media-section .container {
    position: relative;
    z-index: 1;
}

.home-media-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

.home-media-scroller {
    overflow: hidden;
    width: 100%;
}

.home-media-track {
    display: flex;
    gap: 80px;
    animation: scroll-left 40s linear infinite;
}

.home-media-track img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* New Dates - NO BLACK, use dark brown */
.home-dates-banner {
    padding: 100px 20px;
    background-image: url('https://static.wixstatic.com/media/d9e883_808300e280a84a8a994ffa6281a6066b~mv2.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.home-dates-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(70, 50, 40, 0.40);
}

.home-dates-banner .container {
    position: relative;
    z-index: 1;
}

.home-dates-banner h3 {
    color: #d4a574;
    font-size: 24px;
    margin-bottom: 20px;
}

.home-dates-banner h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 30px;
}

.home-dates-banner p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .home-newsletter-grid {
        grid-template-columns: 1fr;
    }
    .home-newsletter-grid .side-image {
        display: none;
    }
}
