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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #8B4513;
    background-color: #F5F5DC;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary-gold: #D4A574;
    --light-gold: #F5E6D3;
    --dark-gold: #B8860B;
    --cream: #F5F5DC;
    --dark-cream: #E6DCC6;
    --brown: #8B4513;
    --dark-brown: #654321;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --shadow: rgba(139, 69, 19, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-gold);
}

/* Navigasi */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gold);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 80px 20px;
}

.hero-background {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.hero-quote {
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    border-left: 4px solid var(--primary-gold);
}

.hero-quote p {
    font-size: 1rem;
    color: var(--brown);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.quote-source {
    font-size: 0.9rem;
    color: var(--dark-gold);
    font-weight: 600;
    display: block;
    text-align: right;
}

/* Countdown Timer */
.countdown-timer {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    visibility: visible;
    opacity: 1;
    z-index: 100;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    min-width: 80px;
    width: 80px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    visibility: visible;
    opacity: 1;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-number {
    display: block !important;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    visibility: visible;
    opacity: 1;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--brown);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
    display: block !important;
    visibility: visible;
    opacity: 1;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
    opacity: 1;
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--brown);
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-style: italic;
}

/* Profile Section */
.profile-section {
    padding: 100px 0;
    background: var(--cream);
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.profile-card {
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

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

.profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-gold);
    box-shadow: 0 0 20px var(--shadow);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.profile-detail {
    font-size: 1rem;
    color: var(--brown);
    margin-bottom: 5px;
}

.profile-parents {
    font-size: 1.1rem;
    color: var(--dark-brown);
    font-weight: 600;
}

.profile-divider {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ornament-heart {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 5px 15px var(--shadow);
    animation: heartBeat 2s infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.love-story {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.love-story-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.love-story-title {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.love-story-text {
    font-size: 1rem;
    color: var(--brown);
    line-height: 1.8;
}

/* Event Section */
.event-section {
    padding: 100px 0;
    background: var(--light-gold);
}

.event-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.event-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

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

.event-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.event-card h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.event-date {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 10px;
}

.event-time {
    font-size: 1.1rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.event-location {
    font-size: 1.1rem;
    color: var(--dark-brown);
    font-weight: 600;
}

.event-map {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.map-container {
    position: relative;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--brown);
}

.event-actions {
    text-align: center;
    padding: 30px;
}

.btn-maps {
    background: var(--primary-gold);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
}

.btn-maps:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--cream);
}

.gallery-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.gallery-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow);
}

.gallery-item {
    width: 100%;
    height: 500px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.gallery-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-gold);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px var(--shadow);
}

.gallery-nav-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: scale(1.1);
}

/* Wishes Section */
.wishes-section {
    padding: 100px 0;
    background: var(--light-gold);
}

.wishes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.wishes-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.wishes-form h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--dark-cream);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: var(--primary-gold);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 5px 15px var(--shadow);
}

.btn-submit:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

.wishes-display {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    max-height: 500px;
    overflow-y: auto;
}

.wishes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.wishes-header h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin: 0;
}

.wishes-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-data-action {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 110px;
    justify-content: center;
}

.btn-data-action:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.btn-data-action.btn-danger {
    background: #dc3545;
}

.btn-data-action.btn-danger:hover {
    background: #c82333;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.btn-data-action i {
    font-size: 0.9rem;
}

.wishes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wish-item {
    background: var(--light-gold);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
}

.wish-content h4 {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.wish-message {
    color: var(--brown);
    margin-bottom: 10px;
    line-height: 1.6;
}

.wish-date {
    font-size: 0.9rem;
    color: var(--dark-brown);
    font-style: italic;
}

.no-wishes {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    margin: 20px 0;
}

.no-wishes p {
    color: var(--brown);
    font-style: italic;
    margin: 0;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #28a745;
    border-left: 4px solid #1e7e34;
}

.notification.error {
    background: #dc3545;
    border-left: 4px solid #c82333;
}

.notification.info {
    background: var(--primary-gold);
    border-left: 4px solid var(--dark-gold);
}

/* Envelope Section */
.envelope-section {
    padding: 100px 0;
    background: var(--cream);
}

.envelope-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 40px var(--shadow);
}

.envelope-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.envelope-card h3 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 40px;
}

.bank-info {
    margin-bottom: 30px;
}

.bank-item {
    background: var(--light-gold);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.bank-details {
    text-align: center;
    margin-bottom: 20px;
}

.bank-logo {
    background: var(--primary-gold);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.bank-details h4 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.account-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.account-name {
    font-size: 1.1rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.btn-copy {
    background: var(--primary-gold);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
}

.btn-copy:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

.envelope-disclaimer {
    font-style: italic;
    color: var(--brown);
    font-size: 1rem;
    margin-top: 30px;
}

/* Closing Section */
.closing-section {
    padding: 100px 0;
    background: var(--light-gold);
    text-align: center;
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
}

.closing-ornament {
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.closing-quote {
    font-size: 1.5rem;
    color: var(--brown);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.closing-source {
    font-size: 1.1rem;
    color: var(--dark-gold);
    font-weight: 600;
    margin-bottom: 40px;
}

.closing-text {
    font-size: 1.1rem;
    color: var(--brown);
    margin-bottom: 20px;
    line-height: 1.8;
}

.closing-signature {
    font-size: 1.1rem;
    color: var(--brown);
    margin-bottom: 30px;
}

.closing-names {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.btn-share {
    background: var(--primary-gold);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px var(--shadow);
}

.btn-share:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

.closing-disclaimer {
    font-size: 0.9rem;
    color: var(--brown);
    font-style: italic;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 30px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-social {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

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

.btn-social.link {
    background: #34495e;
    color: white;
}

.btn-social:hover {
    transform: translateY(-2px);
}

.footer-credits {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    color: #bdc3c7;
}

/* Music Control */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.music-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d4af37, #f4e4bc);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.music-btn:hover {
    transform: scale(1.1);
}

.music-btn.playing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
    }
    100% {
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .countdown-timer {
        gap: 10px;
        margin-top: 30px;
        padding: 0 10px;
    }
    
    .countdown-item {
        padding: 12px 8px;
        min-width: 65px;
        width: 65px;
        height: 75px;
        margin: 0 2px;
    }
    
    .countdown-number {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    
    .countdown-label {
        font-size: 0.7rem;
        margin-top: 3px;
    }
    
    .countdown-separator {
        font-size: 1.3rem;
        margin: 0 2px;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        gap: 40px;
        position: relative;
    }
    
    .profile-card:first-child {
        order: 1;
        margin-bottom: 20px;
    }
    
    .profile-card:last-child {
        order: 3;
        margin-top: 20px;
    }
    
    .profile-divider {
        order: 2;
        position: relative;
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        padding: 0;
        margin: 0;
    }
    
    .ornament-heart {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
        position: relative;
        left: 0;
        top: 0;
        transform: none;
    }
    
    .event-content {
        grid-template-columns: 1fr;
    }
    
        .wishes-content {
        grid-template-columns: 1fr;
    }

    .wishes-header {
        flex-direction: column;
        align-items: stretch;
    }

    .wishes-actions {
        justify-content: center;
    }

    .btn-data-action {
        min-width: 100px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .section-title {
        font-size: 2.5rem;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .countdown-timer {
        flex-wrap: nowrap;
        gap: 5px;
        margin-top: 25px;
        padding: 0 5px;
        justify-content: center;
        align-items: center;
    }
    
    .countdown-item {
        padding: 10px 6px;
        min-width: 58px;
        width: 58px;
        height: 68px;
        margin: 0 1px;
    }
    
    .countdown-number {
        font-size: 1.4rem;
        line-height: 1;
    }
    
    .countdown-label {
        font-size: 0.65rem;
        margin-top: 2px;
    }
    
    .countdown-separator {
        font-size: 1.1rem;
        margin: 0 1px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .profile-card,
    .event-card,
    .wishes-form,
    .wishes-display,
    .envelope-card {
        padding: 25px;
    }

    .wishes-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .wishes-actions {
        justify-content: center;
        gap: 8px;
    }

    .btn-data-action {
        min-width: 90px;
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    
    .ornament-heart {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        position: relative;
        left: 0;
        top: 0;
        transform: none;
    }
    
    .profile-divider {
        padding: 0;
        height: 50px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        position: relative;
        margin: 0;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gold);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}

/* Selection */
::selection {
    background: var(--primary-gold);
    color: var(--white);
}

/* Bottom Navigation for Mobile */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default */
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    min-width: 50px;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(174, 139, 90, 0.1);
    color: #ae8b5a;
}

.nav-item i {
    font-size: 18px;
    margin-bottom: 3px;
    color: #666;
    transition: color 0.3s ease;
}

.nav-item span {
    font-size: 10px;
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
}

.nav-item:hover i,
.nav-item.active i,
.nav-item:hover span,
.nav-item.active span {
    color: #ae8b5a;
}

/* Show bottom navigation only on mobile */
@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }
    
    /* Add bottom padding to body to avoid content being hidden behind navigation */
    body {
        padding-bottom: 70px;
    }
}

/* Responsive adjustments for very small screens */
@media (max-width: 480px) {
    .nav-item {
        padding: 3px 5px;
        min-width: 40px;
    }
    
    .nav-item i {
        font-size: 16px;
    }
    
    .nav-item span {
        font-size: 9px;
    }
}

/* Ensure smooth scrolling for all sections */
html {
    scroll-behavior: smooth;
} 