/* Base Styles */
body {
    margin: 0;
    padding-top: 60px;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #121212, #2a2a2a);
    color: #fff;
}

header, footer {
    text-align: center;
    padding: 20px;
}

footer {
    font-size: 1.1em;
}

.container {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Row Layout */
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 0;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.row.reverse {
    flex-direction: row-reverse;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.image-container, .text-container {
    width: 50%;
    box-sizing: border-box;
    padding: 20px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.image-container img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.text-container {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 30px;
    transition: background 0.3s ease;
}

.text-container:hover {
    background: rgba(0, 0, 0, 0.7);
}

.text-container p {
    font-size: 1.2em;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

/* Section Styling */
#overview {
    padding: 40px;
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

#overview h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #f4a800;
}

#overview h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #e52e71;
}

#gallery {
    padding: 40px;
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

#gallery h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #f4a800;
}

.gallery-note {
    text-align: center;
    font-size: 1em;
    color: #aaa;
    margin-bottom: 30px;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.04);
    filter: brightness(1.1);
}

/* Coming Soon Banner */
#coming-soon {
    padding: 40px;
    margin-top: 40px;
    background: rgba(244, 168, 0, 0.08);
    border: 1px solid rgba(244, 168, 0, 0.3);
    border-radius: 10px;
    text-align: center;
}

#coming-soon h2 {
    font-size: 2em;
    color: #f4a800;
    margin-bottom: 16px;
}

#coming-soon ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 500px;
    text-align: left;
}

#coming-soon ul li {
    font-size: 1.1em;
    line-height: 2;
    color: #ccc;
}

#coming-soon ul li::before {
    content: "⚙ ";
    color: #f4a800;
}

/* Video Placeholder */
#demo-video {
    padding: 40px;
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
}

#demo-video h2 {
    font-size: 2.5em;
    color: #f4a800;
    margin-bottom: 16px;
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(244, 168, 0, 0.4);
    border-radius: 12px;
    color: #777;
    font-size: 1.1em;
    font-style: italic;
}

/* Back Link */
.back-link {
    color: #1e90ff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

.back-link:hover {
    color: #63b3ff;
}

/* Responsive */
@media (max-width: 768px) {
    .row {
        flex-direction: column !important;
        margin: 20px 0;
        text-align: center;
    }
    .image-container, .text-container {
        width: 100%;
        padding: 10px;
    }
    .image-container { order: 1; }
    .text-container  { order: 2; }
    .text-container p { font-size: 1em; }
    #overview h2, #gallery h2, #coming-soon h2, #demo-video h2 { font-size: 1.8em; }
    .back-link { font-size: 1em; }
}
