/* 1. Reset browser defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 2. The Main Page Wrapper */
body {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
                url('images/nature-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    background-color: #1a1612;
    color: #d4af37;
    font-family: 'Georgia', serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    overflow-y: auto;
    overflow-x: hidden;
}

/* 3. The Content Area */
.app-container {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 4. Text & Header Styling */
.date-stamp {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.quote-text {
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    min-height: 3em;
}

/* 5. Button Styling */
.spark-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid #d4af37;
    border-radius: 50px;
    color: #d4af37;
    text-decoration: none;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.spark-button:hover {
    background: #d4af37;
    color: #1a1612;
    transform: translateY(-3px);
}

.instruction {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1.5rem;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.divider {
    border: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin: 4rem 0;
    width: 100%;
}

/* 6. Reflection & Video Sections */
.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.reflection-text {
    font-style: italic;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.video-section {
    margin-top: 2rem;
    width: 100%;
    max-width: 500px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.4);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 7. Low Profile Copyright with Hover Animation */
.copyright {
    margin-top: 100px;
    padding-bottom: 40px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    text-align: center;
    width: 100%;
    
    /* Animation settings */
    opacity: 0.4;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.copyright:hover {
    opacity: 1;
    transform: translateY(-2px);
}
.share-button {
    margin-top: 20px;
    background: none;
    border: none;
    color: #d4af37;
    font-family: 'Georgia', serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-button:hover {
    opacity: 1;
}

.share-icon {
    font-size: 1rem;
}