body {
    font-family: 'Comfortaa', sans-serif;
    cursor: url('/static/images/cursor.svg'), auto;
}

/* Custom Cursors */
a, button, [onclick] {
    cursor: url('/static/images/pointer.svg'), pointer;
}

/* General Styles */
.section {
    padding: 80px 0;
    transition: background-color 0.5s ease;
}
.section h2 {
    font-size: 3em;
    margin-bottom: 40px;
    font-family: 'Pacifico', cursive;
    color: #d12c2c;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Header Styles */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-header nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    transition: color 0.3s;
}
.main-header nav a:hover {
    color: #d12c2c;
}

/* Logo */
.logo-img {
    height: 70px; /* Increased logo size */
    width: auto;
}
.logo-link {
    text-decoration: none;
    display: inline-block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fde2e4 0%, #65a9e0 100%); /* Bolder Blue */
    color: white;
    text-align: center;
    padding: 120px 20px;
}
.hero h1 {
    font-family: 'Lobster', cursive;
    font-size: 5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    color: #fff; /* White text for hero */
}
.hero p {
    font-size: 1.8em;
    color: #fff;
}

/* Story Section */
#story {
    background: linear-gradient(135deg, #e6f2ff 0%, #b3d7f9 100%);
    color: #333;
    padding: 80px 0;
}
#story h2 {
    color: #d12c2c;
}
#story p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2em;
    line-height: 1.6;
}

/* Menu Section */
#menu-static {
    background: linear-gradient(rgba(70, 160, 255, 0.55), rgba(255,255,255,0.85)), url('/static/images/smores-milkshake.jpg') center/cover no-repeat;
}

/* Menu Containers */
.menu-container {
    width: 100%;
    max-width: 700px;
    min-width: 350px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(101, 169, 224, 0.10), 0 1.5px 6px rgba(209, 44, 44, 0.07);
    padding: 36px 32px 28px 32px;
    margin-bottom: 32px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.menu-container.visible {
    opacity: 1;
    transform: translateY(0);
}
.menu-container:hover {
    box-shadow: 0 8px 32px rgba(101, 169, 224, 0.18), 0 3px 12px rgba(209, 44, 44, 0.12);
    transform: translateY(-6px) scale(1.03);
}
.menu-container.compact {
    padding: 36px 32px 10px 32px !important;
}
.menu-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}
.menu-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e6f2ff;
    font-size: 1.13em;
    font-family: 'Comfortaa', sans-serif;
}
.menu-row:last-child {
    border-bottom: none;
}
.menu-row.highlighted {
    background-color: #fde2e4;
    border: 2px solid #d12c2c;
    border-radius: 8px;
    font-weight: bold;
    transform: scale(1.03);
    box-shadow: 0 2px 12px rgba(209,44,44,0.10);
}
.menu-section-description {
    font-size: 1.05em;
    color: #888;
    margin-top: -14px;
    margin-bottom: 20px;
    font-style: italic;
}
.menu-section-title {
    font-family: 'Pacifico', cursive;
    color: #d12c2c;
    font-size: 2.1em;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

/* Slideshow Styles */
#slideshow {
    padding: 0;
}
.slideshow-container {
    max-width: none;
    position: relative;
    margin: auto;
    overflow: hidden; /* This is crucial for the sliding effect */
}
.slideshow-wrapper {
    display: flex;
    transition: transform 0.8s ease-in-out;
}
.slide {
    min-width: 100%;
    height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.slide-text {
    color: #fff;
    font-family: 'Pacifico', cursive;
    font-size: 4em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

/* Slideshow Navigation */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
.view-menu-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    background-color: #d12c2c;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    font-size: 1.2em;
    transition: background-color 0.3s, transform 0.3s;
}
.view-menu-btn:hover {
    background-color: #a12323;
    transform: scale(1.05);
}

/* Reviews Section */
#reviews {
    background-color: #f9f9f9;
}
.aggregate-review {
    display: inline-block;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
}
.aggregate-review .rating-text {
    font-size: 1.5em;
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 5px;
}
.aggregate-review .stars {
    color: #fbbc05; /* Google Yellow */
    font-size: 1.8em;
    margin-bottom: 5px;
}
.aggregate-review .review-count {
    color: #777;
}
.reviews-header {
    margin-bottom: 40px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.review-card {
    background-color: #fff;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: left;
    display: flex;
    flex-direction: column;
}
.review-card p {
    font-size: 1em;
    font-style: normal;
    color: #333;
    flex-grow: 1; /* Ensures cards are same height */
    margin: 0;
}
.reviewer-name {
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 10px;
}
.review-source {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.trustindex-badge {
    margin-top: 40px;
    text-align: center;
    font-size: 1em;
    color: #777;
}

/* Contact Page Styles */
.contact-section {
    background: linear-gradient(to right, #e6f2ff, #fde2e4);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    text-align: left;
    align-items: center;
}
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.contact-info h3 {
    font-family: 'Pacifico', cursive;
    color: #d12c2c;
    font-size: 2em;
    margin-bottom: 20px;
}
.info-item {
    margin-bottom: 20px;
}
.info-item strong {
    display: block;
    font-family: 'Comfortaa', sans-serif;
    margin-bottom: 5px;
}
.info-item p {
    margin: 0;
    font-size: 1.1em;
}
.info-item a {
    color: #65a9e0;
    text-decoration: none;
    transition: color 0.3s;
}
.info-item a:hover {
    color: #d12c2c;
}
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Footer */
.footer {
    background-color: #65a9e0;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    margin-top: 0;
}
.footer a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}
.footer a:hover {
    color: #d12c2c;
}

/* Animation */
.animated-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animated-section.visible {
    opacity: 1;
    transform: translateY(0);
} 