/* Font Face Definition */
@font-face {
    font-family: 'Good Times';
    src: url('GoodTimes-Regular.woff2') format('woff2'),
         url('GoodTimes-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@import url('https://fonts.cdnfonts.com/css/good-times-2');
/* Apply Good Times Font Globally */
* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply Helvetica Font to All Paragraphs */
p {
    font-family: 'Helvetica', sans-serif;
    font-size: 16px; /* Optional: Adjust font size if needed */
}

/* Body Styling */
body {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

/* Header */
.header {
    width: 100%;
    background: rgb(255, 255, 255);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    border-bottom: 1px solid #333;
}

/* Marquee Animation */
.marquee {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Navigation Links */
.nav-link {
    text-decoration: none;
    color: white;
    margin: 0 15px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ccc;
}

.nav { 
    display: flex; 
    justify-content: center; 
    padding: 20px;
    flex-wrap: wrap;
}
.logo { 
    display: flex; 
    justify-content: center; 
    margin: 20px 0; 
}
.icons { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    padding: 15px; 
}

.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}
/* .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
} */
.shop-button {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: black;
    text-decoration: none;
  ;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.shop-button:hover {
    background: #ddd;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}
.featured-products {
    padding: 80px 0;
}
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
}
@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.product-image-link {
    display: block;
    margin-bottom: 16px;
    transition: opacity 0.3s;
}
.product-image-link:hover {
    opacity: 0.9;
}
.product-image-container {
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) {
    .product-image-container {
        height: 400px;
    }
}
.product-image {
    height: 100%;
    width: auto;
    object-fit: contain;
}
.product-details {
    margin-bottom: 8px;
}
/* .product-name {
   
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    margin-bottom: 4px;
    display: block;
    transition: color 0.3s;
}
.product-name:hover {
    color: gold;
} */
.price-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}
.original-price {
    text-decoration: line-through;
    color: #6b7280;
}
.product-meta {
    color: #6b7280;
    font-size: 12px;
    margin-top: 4px;
}
.product-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}
.action-link, .action-button {
    text-transform: uppercase;
    letter-spacing: 0.1em;
   
    font-size: 12px;
    transition: color 0.3s;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
}
.action-link:hover, .action-button:hover {
    color: gold;
}
a {
    text-decoration: none;
    color: inherit;
}

.partnership-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('Image/A5 - 6.jpg') no-repeat center center;
    background-size: cover;
}
.container1 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .container1 {
        grid-template-columns: 1fr 1fr;
        padding: 80px;
    }
}
.content {
    grid-column: 1;
    z-index: 2;
}
.subtitle {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
   
    color: rgba(255, 255, 255, 0.7);
}
.title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
}
@media (min-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
}
.discover-button {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
   
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    background: transparent;
}
.discover-button:hover {
    background: #fff;
    color: #000;
}
.image-column {
    display: none;
}
@media (min-width: 768px) {
    .image-column {
        display: block;
        position: relative;
    }
}


.hero-section1 {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #000;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section1 {
        height: 600px;
    }
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    z-index: 2;
}

.hero-title1 {
    font-size: 2rem;
   
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
    .hero-title1 {
        font-size: 2.5rem;
    }
}

.hero-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    text-transform: uppercase;
   
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: white;
    color: black;
}
.hero-section2 {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #000;
}

@media (min-width: 768px) {
    .hero-section2 {
        height: 600px;
    }
}

.hero-image2 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    z-index: 2;
}

.hero-title {
    font-size: 2rem;
   
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    max-width: 500px;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

.hero-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    text-transform: uppercase;
   
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: white;
    color: black;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
   
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-link:hover {
    opacity: 0.8;
}
.newsletter-title {
   
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}
.newsletter-subtitle {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}
.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .newsletter-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.newsletter-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #4b5563;
    padding: 0.5rem 0;
    color: #fff;
    width: 100%;
    outline: none;
}
.newsletter-input::placeholder {
    color: #6b7280;
}
.newsletter-button {
    background: transparent;
    border: none;
    color: #fff;
   
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    margin-left: 1rem;
    cursor: pointer;
}
.newsletter-button:hover {
    opacity: 0.8;
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1f2937;
    padding-top: 1.5rem;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}
.copyright {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .copyright {
        margin-bottom: 0;
    }
}
.legal-links {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
}
.legal-link {
    color: #6b7280;
    text-decoration: none;
}
.legal-link:hover {
    color: #fff;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
@media (min-width: 768px) {
    .social-links {
        margin-top: 0;
    }
}
.social-icon {
    width: 1.25rem;
    height: 1.25rem;
}
.footer-logo {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}
.footer-logo-img {
    width: 6rem;
}
.input-group {
    display: flex;
    align-items: center;
}

        .fbo-embed{
            width: 80%;
            height:400px;
        }

/* General Mobile Styles */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }

    .header {
        padding: 5px 0;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
    }

    .nav-link {
        font-size: 12px;
    }

    .hero-section {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .shop-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-image-container {
        height: 250px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-link {
        font-size: 0.75rem;
    }

    .newsletter-title {
        font-size: 0.9rem;
    }

    .newsletter-subtitle {
        font-size: 0.8rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .hero-title1 {
        font-size: 1.8rem;
    }

    .hero-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.8rem; /* Adjust font size for h1 */
    }

    h2 {
        font-size: 1.5rem; /* Adjust font size for h2 */
    }

    h3 {
        font-size: 1.2rem; /* Adjust font size for h3 */
    }

    h4 {
        font-size: 1rem; /* Adjust font size for h4 */
    }

    h5 {
        font-size: 0.9rem; /* Adjust font size for h5 */
    }

    h6 {
        font-size: 0.8rem; /* Adjust font size for h6 */
    }
}

/* Mobile-Specific Styles */
@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .header {
        padding: 3px 0;
    }

    .nav {
        flex-direction: column;
        gap: 5px;
    }

    .nav-link {
        font-size: 10px;
    }

    .hero-section {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.2rem;
    }

    .shop-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-image-container {
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .footer-link {
        font-size: 0.7rem;
    }

    .newsletter-title {
        font-size: 0.8rem;
    }

    .newsletter-subtitle {
        font-size: 0.7rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .hero-title1 {
        font-size: 1.5rem;
    }

    .hero-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    h1 {
        font-size: 1.5rem; /* Further reduce font size for h1 */
    }

    h2 {
        font-size: 1.3rem; /* Further reduce font size for h2 */
    }

    h3 {
        font-size: 1.1rem; /* Further reduce font size for h3 */
    }

    h4 {
        font-size: 0.9rem; /* Further reduce font size for h4 */
    }

    h5 {
        font-size: 0.8rem; /* Further reduce font size for h5 */
    }

    h6 {
        font-size: 0.7rem; /* Further reduce font size for h6 */
    }
}





