/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Dancing+Script:wght@400;700&display=swap');

/* Import navigation styles */
@import url('navigation.css');

/* CSS Variables */
:root {
  --primary-color: #e74c3c;
  --secondary-color: #f39c12;
  --accent-color: #8e44ad;
  --success-color: #27ae60;
  --warning-color: #f1c40f;
  --danger-color: #e74c3c;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-hover: 0 15px 40px rgba(0,0,0,0.15);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

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

.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 80px;
}

.nav-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
}

.nav-logo a {
    text-decoration: none;
    color: #e74c3c;
    font-weight: 700;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Dancing Script', cursive;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 3s ease-in-out infinite;
    height: 100%;
    align-items: center;
    white-space: nowrap;
    padding: 0 1rem;
}

.nav-logo a:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.nav-logo a i {
    font-size: 2.4rem;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: auto;
    padding-right: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
    margin-right: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    position: relative;
}

.nav-link i {
    font-size: 1.1rem;
}

.nav-link:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.nav-link.active {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e74c3c;
    border-radius: 3px 3px 0 0;
}

/* Auth Links Styles */
#nav-auth-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
    height: 100%;
}

.auth-link {
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-link.signin {
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.auth-link.signin:hover {
    background: rgba(231, 76, 60, 0.1);
}

.auth-link.signup {
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    color: white;
    border: none;
}

.auth-link.signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

/* User Menu Styles */
.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    position: relative;
}

.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    background: none;
    cursor: pointer;
    color: #2c3e50;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.user-menu-btn:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.user-menu-btn img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e74c3c;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    min-width: 220px;
    display: none;
    z-index: 1000;
}

.user-dropdown.active .dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 0.5rem 0;
}

.logout-btn {
    color: #e74c3c;
}

.logout-btn:hover {
    background: rgba(231, 76, 60, 0.1);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .nav-link {
        width: 100%;
        padding: 1rem;
        justify-content: flex-start;
    }

    #nav-auth-links {
        flex-direction: column;
        width: 100%;
        margin: 1rem 0;
    }

    .auth-link {
        width: 100%;
        justify-content: center;
    }

    .user-menu {
        width: 100%;
        flex-direction: column;
    }

    .user-menu-btn {
        width: 100%;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 1rem;
        min-width: 100%;
    }

    .dropdown-item {
        padding: 1rem;
        font-size: 1rem;
    }

    .nav-container {
        padding: 0;
    }

    .nav-logo a {
        font-size: 1.8rem;
        padding: 0 0.75rem;
    }
    
    .nav-logo a i {
        font-size: 2rem;
    }
    
    .navbar {
        height: 70px;
    }
    
    .nav-links {
        margin-right: 0;
    }

    .nav-menu {
        padding-right: 0.75rem;
    }
}

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

/* Adjust main content padding for fixed navbar */
main, .container {
    padding-top: 80px;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: 200% 200%;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-success {
  background: linear-gradient(45deg, var(--success-color), #2ecc71);
  color: white;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(243, 156, 18, 0.9)), 
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="hearts" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="60" r="3" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="1200" height="600" fill="url(%23hearts)"/></svg>');
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(231, 76, 60, 0.1) 0%, 
    rgba(243, 156, 18, 0.1) 25%, 
    rgba(142, 68, 173, 0.1) 50%, 
    rgba(231, 76, 60, 0.1) 75%, 
    rgba(243, 156, 18, 0.1) 100%);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: pulse 3s ease-in-out infinite;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-emoji {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

/* Page Header Styles */
.page-header {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
  padding: 2rem 0 1.5rem;
  margin-top: 80px;
  border-bottom: 1px solid rgba(231, 76, 60, 0.1);
}

.breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.separator {
  margin: 0 0.5rem;
  color: #999;
}

.current {
  color: var(--dark-color);
  font-weight: 500;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-emoji {
  font-size: 2.5rem;
  animation: float 3s ease-in-out infinite;
}

.page-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  max-width: 600px;
}

/* Weddings Section */
.weddings-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
}

.weddings-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.section-title p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.weddings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.wedding-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.wedding-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.wedding-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.wedding-image {
  height: 220px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
}

.wedding-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 4s ease-in-out infinite;
}

.wedding-image i {
  font-size: 3rem;
  animation: pulse 2s ease-in-out infinite;
}

.wedding-info {
  padding: 2rem;
}

.wedding-info h3 {
  margin-bottom: 1rem;
  color: var(--dark-color);
  font-size: 1.3rem;
  font-weight: 600;
}

.wedding-details {
  margin-bottom: 1.5rem;
}

.wedding-details p {
  margin-bottom: 0.75rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wedding-details i {
  color: var(--primary-color);
  width: 20px;
}

.wedding-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
  border-radius: var(--border-radius);
}

.availability-status {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.status-available {
  background: rgba(39, 174, 96, 0.1);
  color: var(--success-color);
}

.status-limited {
  background: rgba(241, 196, 15, 0.1);
  color: var(--warning-color);
}

.status-full {
  background: rgba(231, 76, 60, 0.1);
  color: var(--danger-color);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  animation: fadeInUp 0.3s ease-out;
}

.modal-content {
  background: white;
  margin: 3% auto;
  padding: 0;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: var(--shadow-hover);
  animation: fadeInUp 0.4s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

.wedding-modal {
  max-width: 900px;
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-header h3 {
  margin: 0;
  color: var(--dark-color);
  font-size: 1.5rem;
}

.close {
  color: #aaa;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
}

.close:hover {
  color: var(--danger-color);
  background: rgba(231, 76, 60, 0.1);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
  transform: translateY(-2px);
}

.form-control:invalid {
  border-color: var(--danger-color);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

select.form-control {
  cursor: pointer;
}

/* Wedding Details */
.wedding-detail-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
  border-radius: var(--border-radius);
}

.wedding-detail-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.wedding-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.wedding-detail-info h4 {
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  font-size: 1.3rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.wedding-detail-info p {
  margin-bottom: 0.75rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wedding-detail-info ul {
  list-style: none;
  padding: 0;
}

.wedding-detail-info li {
  margin-bottom: 0.5rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wedding-detail-info li::before {
  content: '✨';
  font-size: 1.2rem;
}

.booking-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.booking-section h4 {
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  font-size: 1.4rem;
}

.price-display {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

/* Loading States */
.loading {
  text-align: center;
  padding: 3rem;
  color: #666;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}

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

/* Success/Error Messages */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  animation: fadeInUp 0.3s ease-out;
}

.alert-success {
  background: rgba(39, 174, 96, 0.1);
  color: var(--success-color);
  border-left: 4px solid var(--success-color);
}

.alert-error {
  background: rgba(231, 76, 60, 0.1);
  color: var(--danger-color);
  border-left: 4px solid var(--danger-color);
}

.alert-warning {
  background: rgba(241, 196, 15, 0.1);
  color: var(--warning-color);
  border-left: 4px solid var(--warning-color);
}

/* Dashboard Styles */
.dashboard-section {
  padding: 6rem 0;
  margin-top: 80px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.dashboard-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  animation: fadeInUp 0.8s ease-out;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.stat-label {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-section p, .footer-section a {
  color: #bbb;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-color);
}

/* Social Media Links Styling */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.social-link i {
  position: relative;
  z-index: 2;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Individual social platform colors */
.social-link.facebook {
  background: linear-gradient(135deg, #3b5998, #8b9dc3);
}

.social-link.twitter {
  background: linear-gradient(135deg, #1da1f2, #0084b4);
}

.social-link.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-link.youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link.facebook:hover {
  box-shadow: 0 8px 25px rgba(59, 89, 152, 0.4);
}

.social-link.twitter:hover {
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.social-link.instagram:hover {
  box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
}

.social-link.youtube:hover {
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

/* Social links text for screen readers */
.social-link .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 1rem;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .wedding-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    flex-wrap: wrap;
    position: relative;
  }
  
  .nav-menu {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-auth, .nav-user {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .user-greeting {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .weddings-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .modal-content {
    margin: 5% auto;
    width: 95%;
  }
  
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .page-header {
    padding: 1.5rem 0 1rem;
    text-align: center;
  }
  
  .page-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .page-emoji {
    font-size: 2rem;
  }
  
  .breadcrumb {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 0 1rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .wedding-info {
    padding: 1.5rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .booking-section {
    padding: 2rem;
  }
  
  .price-display {
    font-size: 2rem;
  }
  
  .nav-container {
    padding: 1rem;
  }
  
  .nav-logo h2 {
    font-size: 1.6rem;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .footer-content {
    gap: 1rem;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
    gap: 0.8rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Print Styles */
@media print {
  .navbar, .modal, .btn { display: none !important; }
  body { background: white !important; }
  .wedding-card { break-inside: avoid; }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #d32f2f;
    --secondary-color: #f57c00;
    --dark-color: #000000;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
