
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    height: 100vh;
    background-color: #1a1a1a;
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* --- Content Sections --- */
.content-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; 
    padding: 3vh 20px; 
    box-sizing: border-box;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.content-section.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
    overflow-y: auto;
}

/* --- Header Content (Logo & Headings) --- */
.header-content, .footer-content {
    width: 100%;
    text-align: center;
    flex-shrink: 0;
}

.logo img { width: 60px; height: auto; }
.heading-group { margin-top: 10px; }
.main-heading { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 700; margin: 0; line-height: 1.2; text-shadow: 0 0 15px rgba(0, 0, 0, 0.7); }
.main-heading strong { font-weight: 800; }
.subheading { font-size: clamp(0.8rem, 2vw, 1rem); font-weight: 400; margin-top: 5px; opacity: 0.9; }

/* --- Gallery & Arrows --- */
.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.arrow-group {
    display: flex;
    justify-content: center;
    gap: 25px; 
    margin-top: 15px;
}

.gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    width: 100%;
    height: 45vh; 
}


.gallery-item {
    height: 100%;
    aspect-ratio: 2 / 3; /* Enforce a portrait aspect ratio for all items */
    border-radius: 16px; /* Rounded corners for all */
    overflow: hidden; /* Hide parts of image that don't fit */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Make image fill the container */
}

.gallery-item:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.arrow {
    width: 45px; height: 45px; background-color: rgba(0, 0, 0, 0.6); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.3s ease; z-index: 10;
}
.arrow:hover { transform: scale(1.1); }


.footer-heading {
    font-size: 1.8rem; font-weight: 800; margin: 0 0 15px 0; color: white; text-align: center; text-shadow: 0 3px 8px rgba(0,0,0,0.6); line-height: 1.2;
}
.footer-heading .highlight { font-style: italic; font-weight: 800; }
.huge-text { font-size: 3.2rem; margin-bottom: 20px; }
.huge-text .highlight {
  color: #d42420; 
  -webkit-text-stroke: 3px white; 

  paint-order: stroke fill; 
}

/* LARGER BUTTONS */
.app-buttons { display: flex; flex-direction: column; gap: 15px; width: 100%; max-width: 320px; margin: 0 auto; }
.app-button { display: flex; align-items: center; justify-content: center; padding: 12px; border-radius: 10px; text-decoration: none; color: white; font-size: 1.1rem; font-weight: 600; background-color: black; transition: transform 0.2s ease; }
.app-button:hover { transform: translateY(-3px); }
.app-button i { font-size: 2rem; margin-right: 12px; }

.social-buttons { display: flex; justify-content: center; gap: 25px; }
.social-button { display: flex; align-items: center; justify-content: center; width: 70px; height: 70px; border-radius: 18px; font-size: 2.8rem; color: white; text-decoration: none; box-shadow: 0 3px 8px rgba(0,0,0,0.3); transition: transform 0.2s ease; }
.social-button:hover { transform: translateY(-4px) scale(1.05); }

.social-button.youtube { background-color: #FF0000; }
.social-button.instagram { background-image: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2766 75%,#bc1888 100%); }
.social-button.x { background-color: #000000; }

@media (max-width: 767px) {
    
    .content-section {
        padding-top: 4vh;
        padding-bottom: 4vh;
        justify-content: space-around; 
    }

    .gallery {
        height: 24vh; 
        gap: 3vw;     
    }

    .arrow-up { margin-bottom: 12px; }
    .arrow-down { margin-top: 12px; }

   
    .huge-text {
        font-size: 2.5rem;
    }

    .footer-heading {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }
    .social-button {
        width: 65px;
        height: 65px;
    }
    .app-button {
        padding: 10px;
        font-size: 1rem;
    }
}

/* ======================================================= */
/* --- NEW STYLES FOR LEGAL LINKS AND PAGES --- */
/* ======================================================= */

/* Styles for "Privacy Policy" and "T&C" links */
.legal-links {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    gap: 15px;
}

.legal-links a {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 1;
}

/* Container for the content on T&C and Privacy pages */
.legal-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px 30px;
    
    /* Frosted Glass Effect */
    background-color: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Styles for headings and text on the new pages */
.legal-container h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.legal-container h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

.legal-container p, .legal-container li {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.legal-container ul, .legal-container ol {
    list-style-position: inside;
    padding-left: 10px;
}
.legal-container li {
    margin-bottom: 10px;
}

/* "Back to Home" link style */
.back-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 30px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 1;
}

.legal-links {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    gap: 15px;
}

.legal-links a {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 1;
}

.deletion-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    opacity: 0.9;
}

.form-group input {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    outline: none;
    border-color: #d42420;
    box-shadow: 0 0 10px rgba(212, 36, 32, 0.5);
}

.submit-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background-color: #d42420;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #a91d1a;
    transform: translateY(-2px);
}