/* Mobile-first CSS for zodiac.html */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background: #000 url('../images/bg_full.jpg') center center / cover no-repeat fixed;
    color: #fff;
    min-height: 100vh;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 20px 0;
    text-align: center;
}

.logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.main-content {
    padding: 20px 0;
}

/* Main content wrapper - contains header and main */
.main-content-wrapper {
    width: 100%;
}

/* Page wrapper for two-column layout */
.page-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
}

.main-column {
    width: 100%;
}

.banner-column {
    display: none; /* Hidden on mobile */
}

.banner-ad {
    background: #1a1a2e;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.banner-testimonial {
    background: #1a1a2e;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.banner-testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.banner-testimonial h3 {
    color: #fff;
    margin-bottom: 10px;
}

.banner-testimonial p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}


.main-column {
    width: 100%;
}

.banner-column {
    display: none; /* Hidden on mobile */
}

.banner-ad {
    background: #1a1a2e;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.banner-testimonial {
    background: #1a1a2e;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.banner-testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.banner-testimonial h3 {
    color: #fff;
    margin-bottom: 10px;
}

.banner-testimonial p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.section {
    background: #1a1a2e;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.section h3 {
    color: #ff6b35;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin: 20px 0 10px;
}

/* All headings use Permanent Marker */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Permanent Marker', cursive;
}

.ad-section {
    margin: 20px 0;
    text-align: center;
    padding: 20px;
    background: #1a1a2e;
    border-radius: 8px;
}

.images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.images-grid img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.testimonial {
    background: #1a1a2e;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Footer (match index) */
.footer {
    background: #1a1a2e;
    padding: 30px 0;
    text-align: center;
}

.footer h4 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.footer p,
.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #ff6b35;
}

.language-selector {
    margin: 20px 0;
}

.language-selector a {
    display: inline-block;
    margin: 0 10px;
    padding: 8px 12px;
    border: 1px solid #ff6b35;
    border-radius: 6px;
    color: #ff6b35;
    background: #1a1a2e;
}

.language-selector a.active,
.language-selector a:hover {
    background: #ff6b35;
    color: #fff;
}

/* Newsletter styles (match index.html) */
.newsletter-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 30px 20px;
    text-align: center;
    margin: 30px 0;
}

.newsletter-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.newsletter-section p {
    margin-bottom: 20px;
    color: #fff;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #2a2a3e;
}

@media (min-width:768px) {
    .container {
        max-width: 1200px;
        padding: 0 20px
    }

    .header h1 {
        font-size: 2.4rem
    }

    /* Two-column layout for desktop */
    .page-wrapper {
        grid-template-columns: 1fr 350px;
        gap: 30px;
        align-items: start; /* Align columns to start from top */
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .banner-column {
        display: block;
        position: sticky;
        top: 20px; /* Stick to top when scrolling */
    }

    .main-column {
        flex: 2;
    }

    .images-grid {
        grid-template-columns: 1fr 1fr
    }
}

/* About two-column styles */
.about-two-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
    margin: 20px 0;
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.about-two-col .about-text h3 {
    color: #ff6b35;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.about-two-col .about-text p {
    color: #ccc;
    margin-bottom: 12px;
}

.about-two-col .about-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

@media (min-width:992px) {
    .about-two-col {
        flex-direction: column;
    }

    .about-visual {
        grid-template-columns: 1fr 1fr;
    }
}
