/* Custom styles for Bolder Baking */

:root {
    --cream: #fff6e6;
    --cherry-red: #e94057;
    --blue: #8fc4cd;
    --dark-blue: #000c19;
    --tan: #d6b77f;
    --green: #6d9c3b;
    --dark-text: #333333;
  }
  
  body {
    background-color: var(--cream);
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--dark-text);
  }
  
  .vintage-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    border: 2px solid var(--blue);
  }
  
  .vintage-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--blue);
    border-radius: 15px;
    z-index: -1;
  }
  
  .logo-container {
    max-width: 250px;
    margin: 0 auto;
  }
  
  .navbar {
    background-color: white !important;
    border-bottom: 2px solid var(--blue);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    padding: 15px 0;
    position: relative;
  }
  
  .navbar::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: linear-gradient(to right, var(--cream) 0%, var(--cream) 100%);
  }
  
  .navbar-brand {
    font-family: 'Playfair Display', cursive;
    font-weight: bold;
    color: var(--dark-blue) !important;
    padding: 0.5rem 0;
    border-bottom: none;
  }
  
  .nav-link {
    color: var(--dark-blue) !important;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .nav-link:hover {
    color: var(--blue) !important;
  }
  
  .nav-link:hover::after, .nav-link.active::after {
    width: 80%;
  }
  
  h1, h2, h3 {
    font-family: 'Playfair Display', cursive;
  }
  
  h1.vintage-title {
    color: var(--dark-blue);
    font-size: 3rem;
    text-shadow: 2px 2px 0px var(--blue);
    margin-bottom: 1.5rem;
  }
  
  .btn-vintage {
    background-color: var(--cherry-red);
    color: white;
    border: 2px solid var(--cherry-red);
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: bold;
    transition: all 0.3s;
  }
  
  .btn-vintage:hover {
    background-color: white;
    color: var(--cherry-red);
  }
  
  .card {
    border: 2px solid var(--blue);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    background-color: white;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .card-title {
    color: var(--dark-blue);
    font-weight: bold;
  }
  
  .card-img-top {
    height: 200px;
    object-fit: cover;
  }
  
  .heart-icon {
    color: var(--cherry-red);
  }
  
  .modal-content {
    background-color: var(--cream);
    border: 3px solid var(--blue);
    border-radius: 15px;
  }
  
  .modal-header {
    border-bottom: 2px dotted var(--dark-blue);
    background-color: var(--blue);
    color: var(--dark-blue);
  }
  
  .modal-footer {
    border-top: 2px dotted var(--dark-blue);
    background-color: var(--blue);
  }
  
  .footer {
    background-color: var(--blue);
    border-top: 3px dotted var(--dark-blue);
    padding: 20px 0;
    margin-top: 50px;
    color: var(--dark-blue);
  }
  
  .dessert-profile {
    padding: 30px;
    background: white;
    border-radius: 15px;
    position: relative;
    border: 2px solid var(--blue);
  }
  
  .dessert-profile::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px dashed var(--dark-blue);
    border-radius: 10px;
    z-index: -1;
    pointer-events: none;
  }
  
  .dessert-stats {
    background-color: var(--cream);
    border: 2px solid var(--blue);
    border-radius: 10px;
    padding: 15px;
  }
  
  .stat-bar {
    height: 15px;
    background-color: #e0e0e0;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  
  .stat-fill {
    height: 100%;
    background-color: var(--dark-blue);
    border-radius: 10px;
  }
  
  .badge-vintage {
    background-color: var(--blue);
    color: var(--dark-blue);
    padding: 5px 10px;
    border-radius: 10px;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
    font-weight: bold;
  }
  
  .quiz-card {
    background-color: white;
    border: 3px solid var(--blue);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .slogan {
    font-family: 'Playfair Display', cursive;
    font-style: italic;
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 0 var(--blue);
  }
  
  .decorative-divider {
    height: 30px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%238fc4cd" fill-opacity="0.7" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,218.7C672,203,768,149,864,128C960,107,1056,117,1152,128C1248,139,1344,149,1392,154.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    margin: 30px 0;
  }
  
  .polaroid {
    background: white;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: rotate(-3deg);
    display: inline-block;
    margin: 10px;
    border: 2px solid var(--blue);
  }
  
  .polaroid img {
    max-width: 100%;
    margin-bottom: 10px;
  }
  
  .polaroid p {
    font-family: 'Playfair Display', cursive;
    text-align: center;
    margin: 0;
  }