/* styles.css */
/* Main styles for the website */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans', Arial, sans-serif;
    background-color: #b8b8b8; 
    color: #333;
    padding-top: 70px; /* Account for fixed header */
}

/* Typography */
.vujahday-script-regular {
    font-family: "Vujahday Script", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 96px;
}

h1.a {
font-family: "Vujahday Script", sans-serif;
}

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

/* Hero Section */
.hero-section {
    background: white;
    padding: 60px 40px;
    margin-bottom: 40px;
    /* margin-top: 70px; */
    border-radius: 4px;
}

.hero-header {
    margin-bottom: 40px;
}

.hero-header h1 {
    font-size: 96px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #222;
}

.hero-header .quote {
    font-size: 18px;
    font-style: italic;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
    padding: 20px 0;
    text-align: center;
}

.hero-body {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 40px;
    align-items: flex-start;
}

.hero-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-images img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

/* Grid Section */
.grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.grid-card {
    background: white;
    padding: 30px;
    border-radius: 4px;
    text-align: left;
}

.grid-card h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.grid-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.grid-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.grid-card ul {
    list-style: none;
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

.grid-card ul li {
    margin-bottom: 4px;
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 4px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.feature-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.feature-card ul {
    list-style: none;
    font-size: 13px;
}

.feature-card ul li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.5;
}

.feature-card ul li a {
    color: #7b3a8c;
    text-decoration: none;
}

.feature-card ul li a:hover {
    text-decoration: underline;
}

/* Shop Section */
.shop-section {
    margin-top: 60px;
}

.shop-section h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 10px;
    text-align: left;
    color: #222;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #e0e0e0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.product-info p {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #7b3a8c;
    margin-bottom: 15px;
}

.btn {
    background-color: #a6a7a6; /* #5b7784; #b8b9b8; #7b3a8c; purple */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #5f2d6f;
}

/* Read More/Less Styles */
.content_area {
    max-height: 280px; /* adjust this for read more content */
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.show-content {
    max-height: none;
}

.read-more {
    display: none;
}

/* Footer Styles */
footer {
    background-color: white; /* #b8b8b8;  Match main background */
    margin: 0 calc(-1 * var(--side-margin));
    margin-bottom: 50px;
    margin-top: 20px;
    padding: 10px 20px; /*  var(--side-margin) 10px var(--side-margin); */
    color: #666;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 25px;
    border-bottom: 1px solid #999;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
}

.footer-center {
    flex: 1;
    text-align: center;
}

.footer-center a {
    color: #666;
    text-decoration: none;
    font-size: 1.3rem;
}

.footer-center a:hover {
    color: #8b1538;  /* Use primary burgundy color */
}

.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
}

.social-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #999;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
}

.footer-nav a:hover {
    color: #8b1538;
}

.footer-copyright {
    text-align: center;
    padding-top: 15px;
    margin: 0;
    font-size: 14px;
}

/* Popup Styles */
.wrap {
    width: 80%;
    display: block;
    margin: 20px auto 20px auto;
}

.wrap_popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.popup {
    height: auto;
    width: 80%;
    max-width: 1300px;
    margin: 5% auto;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 5px #000;
}

.title {
    width: 100%;
    display: block;
    background: #71BBF2;
    color: #0C63A4;
    font-weight: 700;
    padding: 5px;
}

.title p {
    margin: 5px;
}

.box {
    width: 100%;
    display: block;
    background: #000000;
    padding: 5px;
    color: #3D3D3D;
}

.box p {
    margin: 5px;
}

.box button {
    padding: 10px;
    margin: 10px 0px 10px 0px;
    background: #1C91E7;
    color: #DFDFDF;
    border: 3px solid #0C63A4;
    border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Reduce body padding for mobile */
    body {
        padding-top: 60px;
    }

    .vujahday-script-regular {
        font-size: 48px;
    }

    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 15px;
        line-height: 1.3;
    }
    
    p {
        font-size: 14px;
        line-height: 1.3;
    }

    .grid-card p {
        font-size: 13px;
        line-height: 1.4;
    }

    .container {
        padding: 20px 10px;
    }

    .hero-section {
        padding: 30px 20px;
     }

    .hero-header h1 {
        font-size: 48px;
    }
    
    .popup {
        max-width: 600px;
    }
    
    /* Grid Sections */
    .grid-section,
    .features-section,
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}
