/* Reset and Base Styles https://coolors.co/f9eac5-c8923b-54381a-4e6e5d-8f3985 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #F9EAC5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #54381A;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Honeycomb Background Decorations */
.honeycomb-container {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    transform: scale(0.3);
    opacity: 1;
}

.honeycomb-top-left {
    top: -50px;
    left: -50px;
    transform-origin: top left;
}

.honeycomb-bottom-right {
    bottom: -100px;
    right: -100px;
    transform-origin: bottom right;
}

.hexagon {
    position: absolute;
    width: 250px;
    height: 226px;
    background-image: url('hex.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    animation: hexPulse 8s ease-in-out infinite;
}

@keyframes hexPulse {

    0%,
    100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.45;
    }
}

.hexagon:nth-child(1) {
    animation-delay: 0s;
}

.hexagon:nth-child(2) {
    animation-delay: 1.2s;
}

.hexagon:nth-child(3) {
    animation-delay: 2.4s;
}

.hexagon:nth-child(4) {
    animation-delay: 0.8s;
}

.hexagon:nth-child(5) {
    animation-delay: 2s;
}

.hexagon:nth-child(6) {
    animation-delay: 3.2s;
}

.hexagon:nth-child(7) {
    animation-delay: 1.6s;
}

.hexagon:nth-child(8) {
    animation-delay: 2.8s;
}

.hexagon:nth-child(9) {
    animation-delay: 0.4s;
}

.hexagon:nth-child(10) {
    animation-delay: 3.6s;
}

.hexagon:nth-child(11) {
    animation-delay: 1s;
}

.hexagon:nth-child(12) {
    animation-delay: 2.2s;
}

.hexagon:nth-child(13) {
    animation-delay: 0s;
}

.hexagon:nth-child(14) {
    animation-delay: 1.2s;
}

.hexagon:nth-child(15) {
    animation-delay: 2.4s;
}

.hexagon:nth-child(16) {
    animation-delay: 0.8s;
}

.hexagon:nth-child(17) {
    animation-delay: 2s;
}

.hexagon:nth-child(18) {
    animation-delay: 3.2s;
}

.hexagon:nth-child(19) {
    animation-delay: 1.6s;
}

.hexagon:nth-child(20) {
    animation-delay: 2.8s;
}

.hexagon:nth-child(21) {
    animation-delay: 0.4s;
}

.hexagon:nth-child(22) {
    animation-delay: 3.6s;
}

.hexagon:nth-child(23) {
    animation-delay: 1s;
}

.hexagon:nth-child(24) {
    animation-delay: 2.2s;
}

.hex-r1-c1 {
    top: 0;
    left: 0;
}

.hex-r1-c2 {
    top: 0;
    left: 250px;
}

.hex-r1-c3 {
    top: 0;
    left: 500px;
}

.hex-r1-c4 {
    top: 0;
    left: 750px;
}

.hex-r1-c5 {
    top: 0;
    left: 1000px;
}

.hex-r2-c1 {
    top: 226px;
    left: 125px;
}

.hex-r2-c2 {
    top: 226px;
    left: 375px;
}

.hex-r2-c3 {
    top: 226px;
    left: 625px;
}

.hex-r2-c4 {
    top: 226px;
    left: 875px;
}

.hex-r3-c1 {
    top: 452px;
    left: 0;
}

.hex-r3-c2 {
    top: 452px;
    left: 250px;
}

.hex-r3-c3 {
    top: 452px;
    left: 500px;
}

.hex-r3-c4 {
    top: 452px;
    left: 750px;
}

.hex-r4-c1 {
    top: 678px;
    left: 125px;
}

.hex-r4-c2 {
    top: 678px;
    left: 375px;
}

.hex-r4-c3 {
    top: 678px;
    left: 625px;
}

.hex-r5-c1 {
    top: 904px;
    left: 0;
}

.hex-r5-c2 {
    top: 904px;
    left: 500px;
}

.hex-r5-c3 {
    top: 904px;
    left: 250px;
}

.hex-r6-c1 {
    top: 1130px;
    left: 125px;
}

.hex-r6-c2 {
    top: 1130px;
    left: 375px;
}

.hex-r7-c1 {
    top: 1356px;
    left: 0;
}

.hex-r7-c2 {
    top: 1356px;
    left: 250px;
}

.hex-r8-c1 {
    top: 1582px;
    left: 125px;
}

main {
    position: relative;
    z-index: 1;
}

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

/* Hero Section */
.hero {
    padding: 100px 20px 40px;
    background: transparent;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.logo {
    max-width: 200px;
    height: auto;
    flex-shrink: 0;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #54381A;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.25rem;
    color: #4E6E5D;
    font-weight: 300;
    max-width: 600px;
}

/* Prices Section */
.prices {
    padding: 0 20px 80px;
}

.prices h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #54381A;
    margin-bottom: 20px;
}

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

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

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.price-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #54381A;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 300;
    color: #C8923B;
    margin-bottom: 15px;
}

.description {
    color: #4E6E5D;
    font-size: 1rem;
    font-weight: 300;
}

/* Out of Stock */
.price-card.out-of-stock {
    opacity: 0.6;
}

.price-card.out-of-stock .price {
    text-decoration: line-through;
    color: #999;
}

.price-card.out-of-stock .out-of-stock-label {
    display: block;
    color: #8F3985;
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 10px;
}

.out-of-stock-label {
    display: none;
}

/* Payment Section */
.payment {
    color: #FFF;
    padding: 40px 20px;
    text-align: center;
    background: #54381a;
}

.payment h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #FFF;
    margin-bottom: 20px;
}

.payment>.container>p {
    font-size: 1.125rem;
    color: #FFF;
    margin-bottom: 40px;
}

.pickup-location {
    color: #54381A;
    text-align: center;
    margin-bottom: 5px !important;
}

.prices .pickup-location {
    margin-bottom: 20px !important;
}

.pickup-location a {
    text-decoration: underline;
    transition: color 0.3s ease;
}

.pickup-location a {
    color: #54381A;
}

.payment a {
    color: #F9EAC5;
}

.pickup-location a:hover {
    color: #C8923B;
}

.payment-options {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-divider {
    color: #FFF;
    font-size: 1.25rem;
    font-weight: 300;
}

.qr-placeholder {
    width: 300px;
    background: #f9eac5;
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.qr-code {
    width: 100%;
    height: auto;
    display: block;
}

.venmo-icon {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.venmo-caption {
    color: #54381A;
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #54381A;
    margin-bottom: 20px;
}

.contact-info {
    font-size: 1.125rem;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    color: #8F3985;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #C8923B;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
}

footer p {
    color: #4E6E5D;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 5px;
}

footer a {
    color: #8F3985;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #C8923B;
}

/* Responsive Design */
@media (min-width: 920px) {
    .logo {
        max-width: 300px;
    }
}

@media (max-width: 810px) {
    .hero .container {
        flex-direction: column;
        gap: 30px;
    }

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

    .logo {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .honeycomb-container {
        transform: scale(0.25);
    }

    .payment-options {
        flex-direction: column;
    }

    .qr-code-container,
    .payment-divider {
        display: none;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 60px 16px 50px;
    }

    .hero h1 {
        font-size: 2.25rem;
        margin-bottom: 16px;
    }

    .subtitle {
        font-size: 1.125rem;
        padding: 0 10px;
    }

    .payment,
    .contact {
        padding: 50px 16px;
    }

    .price-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-card {
        padding: 40px 24px;
    }

    .price-card h3 {
        font-size: 1.375rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .qr-placeholder {
        max-width: 260px;
        padding: 24px;
    }

    .contact-info {
        font-size: 1rem;
    }

    .contact-info a {
        word-break: break-word;
    }

    footer {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .honeycomb-container {
        transform: scale(0.2);
    }

    .hero {
        padding: 40px 16px 40px;
    }

    .hero .container {
        gap: 24px;
    }

    .logo {
        max-width: 350px;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .prices h2,
    .payment h2,
    .contact h2 {
        font-size: 1.75rem;
    }

    .price-card {
        padding: 32px 20px;
    }

    .price {
        font-size: 2.25rem;
    }

    .qr-placeholder {
        max-width: 220px;
        padding: 20px;
    }
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {

    .contact-info a,
    .price-card {
        -webkit-tap-highlight-color: rgba(200, 146, 59, 0.2);
    }

    .price-card:active {
        transform: scale(0.98);
    }
}