/*
Theme Name:   icannotstoplaughing Child
Theme URI:    http://example.com/icannotstoplaughing-child/
Description:  icannotstoplaughing Child Theme
Author:       Your Name
Author URI:   http://example.com
Template:     twentytwentyfour
Version:      1.0.0
*/

/* General Body & 'Old Web' Styling */
body {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Landing Page Specific Styles */
.landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.landing-container {
    max-width: 400px;
    padding: 20px;
}

.landing-link {
    text-decoration: none;
    color: #000000;
}

.landing-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.brand-name {
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    animation-delay: 0.5s;
}

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

/* Header for Product and Menu Pages */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 15px;
    border-bottom: 1px solid #000;
}

.header-logo {
    height: 50px;
    width: auto;
}

/* All specific SVG styles have been removed to prevent conflicts. */
/* Your original SVG code should contain its own styling. */

.nav-caret {
    font-size: 2.5rem;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

/* Main Product Page Styles */
.product-container {
    padding: 20px;
}

.product-image-wrapper {
    margin-bottom: 20px;
    border: 2px solid #000;
    padding: 10px;
    display: inline-block;
}

.main-product-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.product-details {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.product-title {
    font-size: 1.5rem;
    margin: 0;
}

.product-price {
    font-size: 1.2rem;
    margin: 5px 0 20px 0;
}

.product-form .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.product-form label {
    margin-right: 15px;
    width: 80px;
}

.product-form select,
.product-form input[type="number"] {
    font-family: 'Times New Roman', Times, serif;
    border: 1px solid #000;
    padding: 8px;
    background-color: #fff;
    flex-grow: 1;
}

.product-form .quantity-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-form input[type="number"] {
    width: 60px;
    text-align: center;
}

.add-to-cart-btn {
    font-family: 'Times New Roman', Times, serif;
    background-color: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
}

/* Menu Page Styles */
.main-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.main-menu li {
    margin-bottom: 20px;
}

.main-menu a {
    font-size: 2rem;
    text-decoration: none;
    color: #000;
}

/* Contact Page Styles */
.contact-container {
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form {
    text-align: left;
    margin-top: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    box-sizing: border-box;
}

.submit-btn {
    font-family: 'Times New Roman', Times, serif;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
}

/* Responsive adjustments for mobile */
@media (max-width: 480px) {
    .brand-name {
        font-size: 1.8rem;
    }

    .main-menu a {
        font-size: 1.8rem;
    }
    
    .site-header {
        padding: 15px 10px;
    }

    .header-logo {
        height: 40px;
    }
}
