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

body {
    background: #2a2520;
    color: #3a3a3a;
    font-family: Georgia, 'Times New Roman', serif;
    overflow: hidden;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Tabs */
.tabs {
    display: flex;
    background: rgba(42, 37, 32, 0.95);
    padding: 12px 20px;
    gap: 10px;
    border-bottom: 3px solid #8b7355;
}

.tab {
    background: transparent;
    border: 2px solid #8b7355;
    color: #f5f1e8;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    font-family: Georgia, serif;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab:hover {
    background: rgba(139, 115, 85, 0.2);
}

.tab.active {
    background: #8b7355;
    color: #f5f1e8;
}

/* Content Area */
.content {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #f5f1e8;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slide.active {
    display: flex;
    opacity: 1;
}

/* Slide 1: Wedding Photo Gallery */
.photo-gallery {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.photo {
    border: 3px solid #8b7355;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.main-photo {
    width: 100%;
    max-height: 50vh;
    object-fit: contain;
}

.photo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.photo-row .photo {
    width: 100%;
    max-height: 35vh;
    object-fit: contain;
}

/* Slide 2: Florida Quote */
.quote-container {
    max-width: 1200px;
    text-align: center;
    padding: 40px;
}

.main-quote {
    font-size: 42px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 50px;
    font-weight: 400;
    color: #3a3a3a;
}

.main-quote .highlight {
    color: #8b7355;
    font-weight: 600;
}

.attribution {
    margin-top: 40px;
    border-top: 2px solid #8b7355;
    padding-top: 30px;
}

.author {
    font-size: 32px;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 10px;
    font-family: Georgia, serif;
}

.author-title {
    font-size: 24px;
    color: #6a6a6a;
    font-weight: 400;
    font-style: italic;
}

/* Slide 3: Carney Quote */
.quote-container.carney {
    max-width: 1400px;
    padding: 60px;
}

.carney-quote {
    font-size: 64px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 50px;
    color: #3a3a3a;
    font-family: Georgia, serif;
}

.carney-quote .highlight {
    color: #8b7355;
    font-weight: 700;
    border-bottom: 4px solid #8b7355;
    padding-bottom: 2px;
}

/* Slide 4: Strategic Cousins */
.cousins-container {
    text-align: center;
    width: 100%;
    max-width: 1400px;
}

.slide-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #8b7355;
    font-family: Georgia, serif;
    letter-spacing: 1px;
}

.alliance {
    font-size: 140px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.plus {
    color: #8b7355;
    font-weight: 400;
    font-size: 100px;
}

.alliance-name {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 60px;
    color: #3a3a3a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.stat-card {
    background: white;
    border: 3px solid #8b7355;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.stat-label {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    color: #3a3a3a;
}

.announcement {
    font-size: 28px;
    color: #6a6a6a;
    font-weight: 400;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .main-quote { font-size: 34px; }
    .carney-quote { font-size: 52px; }
    .slide-title { font-size: 44px; }
    .stat-number { font-size: 56px; }
}
