:root {
    --peach: #FFDAB9;
    --light-peach: #FFE5B4;
    --cream: #FFFDD0;
    --dark-peach: #FFA07A;
    --text-color: #5D4037;
    --heart-color: #FF6B6B;
}

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

body {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-peach) 100%);
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.heart-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    color: rgba(255, 107, 107, 0.4);
    animation: floatUp 10s linear infinite;
    bottom: -50px;
}

@keyframes floatUp {
    0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { transform: translateY(-100vh) rotate(360deg) scale(1.5); opacity: 0; }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main-heading {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: var(--dark-peach);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeInDown 1.5s ease-out;
}

.sub-heading {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--dark-peach);
    margin-bottom: 25px;
}

.hinglish-message {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: fadeIn 2s ease-out;
}

.image-gallery {
    width: 100%;
    margin-bottom: 40px;
}

.gallery-item {
    margin-bottom: 60px;
    animation: zoomIn 1.5s ease-out;
}

.image-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 10px solid white;
    transition: transform 0.3s ease;
}

.tilt-left {
    transform: rotate(-3deg);
}

.tilt-right {
    transform: rotate(3deg);
}

.image-wrapper:hover {
    transform: rotate(0deg) scale(1.05);
}

.morning-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.quotes {
    margin-top: 20px;
}

.quote {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--text-color);
    margin: 10px 0;
}

.more-content {
    background: rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.love-list {
    list-style: none;
    text-align: left;
    font-size: 1.3rem;
    line-height: 2;
    display: inline-block;
}

.love-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.heart-bullet {
    margin-right: 15px;
    font-size: 1.2rem;
}

.surprise-section {
    margin-top: 20px;
    width: 100%;
    margin-bottom: 50px;
}

.surprise-btn {
    background-color: var(--dark-peach);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 160, 122, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.surprise-btn:hover {
    background-color: #ff8c5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 160, 122, 0.6);
}

.surprise-btn:active {
    transform: translateY(1px);
}

.hidden-message {
    display: none;
    margin-top: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.15);
    border: 2px dashed var(--heart-color);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hidden-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.beating-heart {
    font-size: 4rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: heartbeat 1s infinite;
}

.hidden-message p {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--heart-color);
    font-family: 'Dancing Script', cursive;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

@media (max-width: 600px) {
    .main-heading { font-size: 3rem; }
    .sub-heading { font-size: 2.2rem; }
    .hinglish-message { font-size: 1.2rem; }
    .quote { font-size: 1.8rem; }
    .love-list { font-size: 1.1rem; }
    .surprise-btn { padding: 12px 30px; font-size: 1rem; }
    .more-content { padding: 20px; }
}
