/* ===================================
   WEDDING PORTAL RECORP - CLEAN CSS
   =================================== */

/* ===================
   RESET & BASE
   =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f5f0f0 0%, #e8d5d5 100%);
    min-height: 100vh;
    color: #5d4e75;
    line-height: 1.6;
}

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

/* ===================
   HOMEPAGE HERO
   =================== */
.hero-section {
    background: linear-gradient(135deg, #d4a5a5 0%, #b8888a 50%, #a67073 100%);
    color: white;
    padding: 60px 0 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-header {
    text-align: center;
    margin-bottom: 80px;
    width: 100%;
}

.hero-brand-center {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}

.hero-text {
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 4.5em;
    font-weight: 900;
    margin: 0 auto;
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.5em;
    opacity: 0.9;
    margin: 20px auto 0 auto;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-main-title {
    font-size: 4em;
    margin-bottom: 40px;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.flower {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    margin: 0 15px;
}

.flower:last-child {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.hero-description {
    font-size: 1.4em;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Admin Button Fixed */
.admin-btn-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #d4a5a5;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 165, 165, 0.2);
    font-size: 0.9em;
}

.admin-btn-fixed:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    background: rgba(212, 165, 165, 0.95);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.admin-icon {
    font-size: 1.1em;
}

.admin-text {
    font-size: 0.9em;
    font-weight: 600;
}

/* ===================
   HOMEPAGE SECTIONS
   =================== */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 1px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #d4a5a5;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    color: #d4a5a5;
    font-size: 1.8em;
    margin-bottom: 25px;
    font-weight: bold;
}

.service-list {
    text-align: left;
    line-height: 2.2;
    color: #5d4e75;
    font-size: 1.1em;
}

.service-list li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f4f4 0%, #f0f0f0 100%);
    text-align: center;
}

.contact-title {
    color: #d4a5a5;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
}

.contact-title.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 15px;
}

.contact-title.clickable:hover {
    transform: translateY(-3px);
    background: rgba(212, 165, 165, 0.1);
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.2);
}

.click-hint {
    font-size: 0.4em;
    color: #b8888a;
    display: block;
    margin-top: 5px;
    font-weight: normal;
    animation: pulse 2s infinite;
    opacity: 0.8;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

.contact-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container {
    margin-bottom: 40px;
}

.contact-cta-btn {
    background: linear-gradient(135deg, #d4a5a5, #b8888a);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(212, 165, 165, 0.3);
}

.contact-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 165, 0.4);
    background: linear-gradient(135deg, #b8888a, #a67073);
}

.cta-icon {
    font-size: 1.3em;
    animation: sparkle 2s ease-in-out infinite;
}

.cta-text {
    font-size: 1.1em;
}

.cta-arrow {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.contact-cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.contact-info-mini {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-quick {
    color: #d4a5a5;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.7);
}

.contact-quick:hover {
    color: white;
    background: #d4a5a5;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

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

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    background: linear-gradient(135deg, #d4a5a5, #b8888a);
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5em;
    font-weight: bold;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.contact-form {
    padding: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: bold;
    color: #5d4e75;
    font-size: 0.95em;
}

.contact-form .form-input {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1em;
    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-form .form-input:focus {
    border-color: #d4a5a5;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.1);
}

.contact-form select.form-input {
    cursor: pointer;
}

.contact-form textarea.form-input {
    resize: vertical;
    min-height: 100px;
    font-family: Arial, sans-serif;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.modal-actions .btn {
    min-width: 150px;
}

.footer {
    background: linear-gradient(135deg, #5d4e75 0%, #4a3d5c 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-content p:first-child {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
}

/* ===================
   FORM PAGES SHARED
   =================== */
.header {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.company-logo {
    font-size: 3.5em;
    font-weight: bold;
    color: #d4a5a5;
    letter-spacing: 2px;
}

.company-tagline {
    font-size: 1.1em;
    color: #a08a8a;
    margin-top: -5px;
}

.section {
    background: white;
    margin: 20px 0;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.section h3 {
    color: #d4a5a5;
    font-size: 1.6em;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
}

.section h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d4a5a5, #b8888a);
    border-radius: 2px;
}

/* ===================
   FORM ELEMENTS
   =================== */
.event-info {
    background: #f8f4f4;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #d4a5a5;
}

.event-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item.full-width {
    grid-column: 1 / -1;
}

.detail-label {
    font-weight: bold;
    color: #5d4e75;
    min-width: 120px;
}

.detail-value {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-bottom: 2px solid #d4a5a5;
    background: transparent;
    font-size: 1em;
    color: #5d4e75;
    outline: none;
    transition: all 0.3s ease;
}

.detail-value:focus {
    border-bottom-color: #b8888a;
    background: rgba(212, 165, 165, 0.1);
}

/* Time Picker */
.time-selector {
    position: relative;
    flex: 1;
}

.time-display {
    padding: 8px 12px;
    border: none;
    border-bottom: 2px solid #d4a5a5;
    background: transparent;
    font-size: 1em;
    color: #5d4e75;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.time-display:hover, .time-display.active {
    border-bottom-color: #b8888a;
    background: rgba(212, 165, 165, 0.1);
}

.time-display.empty {
    color: #999;
}

.time-popup {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #d4a5a5;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
    padding: 20px;
    margin-top: 5px;
}

.time-popup.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.time-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.time-input {
    width: 60px;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #5d4e75;
    outline: none;
    transition: all 0.3s ease;
}

.time-input:focus {
    border-color: #d4a5a5;
    box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.2);
}

.time-separator {
    font-size: 1.5em;
    font-weight: bold;
    color: #d4a5a5;
}

.time-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.time-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-btn-ok {
    background: linear-gradient(135deg, #d4a5a5, #b8888a);
    color: white;
}

.time-btn-ok:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(212, 165, 165, 0.4);
}

.time-btn-cancel {
    background: #f0f0f0;
    color: #666;
}

.time-btn-cancel:hover {
    background: #e0e0e0;
}

.quick-times {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 15px 0;
    justify-content: center;
}

.quick-time {
    padding: 5px 10px;
    background: #f8f4f4;
    border: 1px solid #ddd;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8em;
    color: #666;
    transition: all 0.2s ease;
}

.quick-time:hover {
    background: #d4a5a5;
    color: white;
    transform: translateY(-1px);
}

/* Music Section */
.music-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.music-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fafafa;
    border-radius: 8px;
    border-left: 4px solid #d4a5a5;
}

.music-label {
    font-weight: bold;
    color: #5d4e75;
    min-width: 180px;
    text-transform: uppercase;
    font-size: 0.9em;
}

.music-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: #5d4e75;
    outline: none;
    transition: all 0.3s ease;
}

.music-input:focus {
    border-color: #d4a5a5;
    box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.1);
}

.notes-textarea {
    width: 100%;
    height: 200px;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size: 1em;
    color: #5d4e75;
    resize: vertical;
    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
}

.notes-textarea:focus {
    border-color: #d4a5a5;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.1);
}

/* ===================
   BUTTONS
   =================== */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #d4a5a5, #b8888a);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 165, 0.4);
}

.btn-secondary {
    background: white;
    color: #d4a5a5;
    border: 2px solid #d4a5a5;
}

.btn-secondary:hover {
    background: #d4a5a5;
    color: white;
    transform: translateY(-2px);
}

/* ===================
   ADMIN STYLES
   =================== */
.admin-header {
    background: linear-gradient(135deg, #5d4e75, #4a3d5c);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-title {
    font-size: 1.8em;
    font-weight: bold;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logout-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(255,255,255,0.3);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #d4a5a5;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
}

.weddings-list {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.wedding-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.wedding-item:hover {
    background: #f8f8f8;
}

.wedding-item:last-child {
    border-bottom: none;
}

.wedding-info h4 {
    color: #5d4e75;
    margin-bottom: 5px;
}

.wedding-details {
    color: #666;
    font-size: 0.9em;
}

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

.action-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 15px;
    font-size: 0.8em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view {
    background: #e8f4fd;
    color: #0066cc;
}

.btn-edit {
    background: #fff3cd;
    color: #856404;
}

.btn-delete {
    background: #f8d7da;
    color: #721c24;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ===================
   LOGIN STYLES
   =================== */
.login-container {
    max-width: 400px;
    margin: 100px auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: #5d4e75;
    margin-bottom: 10px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-weight: bold;
    color: #5d4e75;
}

.form-input {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #d4a5a5;
    box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.1);
}

.login-btn {
    background: linear-gradient(135deg, #d4a5a5, #b8888a);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 165, 0.4);
}

.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ===================
   MESSAGES
   =================== */
.success-message {
    display: none;
    background: linear-gradient(135deg, #a8d5a8, #7cb47c);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
}

.error-message {
    display: none;
    background: linear-gradient(135deg, #ff9999, #ff6666);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
}

.loading {
    display: none;
    text-align: center;
    color: #d4a5a5;
    font-weight: bold;
    padding: 20px;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #d4a5a5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================
   RESPONSIVE
   =================== */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .hero-main-title {
        font-size: 2.5em;
    }
    
    .hero-brand-center {
        flex-direction: column;
        gap: 0;
    }
    
    .admin-btn-fixed {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }
    
    .admin-text {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .contact-info-mini {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .contact-cta-btn {
        padding: 15px 25px;
        font-size: 1em;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-actions .btn {
        width: 100%;
    }
    
    .event-details {
        grid-template-columns: 1fr;
    }
    
    .music-item {
        flex-direction: column;
        align-items: stretch;
    }
    
    .music-label {
        min-width: auto;
        margin-bottom: 5px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .wedding-item {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .wedding-actions {
        justify-content: center;
    }
    
    .login-container {
        margin: 50px auto;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8em;
    }
    
    .hero-main-title {
        font-size: 2em;
    }
    
    .hero-description {
        font-size: 1.1em;
    }
    
    .contact-title {
        font-size: 2em;
    }
    
    .contact-cta-btn {
        padding: 12px 20px;
        font-size: 0.9em;
        gap: 10px;
    }
    
    .cta-text {
        font-size: 1em;
    }
    
    .service-card h3 {
        font-size: 1.5em;
    }
    
    .service-list {
        font-size: 1em;
    }
    
    .time-popup {
        left: -20px;
        right: -20px;
    }
}

/* ===================
   UTILITY
   =================== */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}