/* Base styles */
html, body { 
    margin: 0; 
    padding: 0;
    height: 100%;
}

body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; 
    color: #333; 
    background-color: #F7EBCF;
    margin: 0;
    padding: 0;
}

/* Header and video styles */
header { 
    position: relative; 
    overflow: hidden; 
    height: 100%;
    width: 100%;
}
h1{
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

header iframe { 
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56.25vh; /* 9:16 aspect ratio (9/16 = 0.5625) */
    height: 100vh;
    transform: translate(-50%, -50%);
    display: block; 
    border: none;
    background: transparent;
    pointer-events: none;
    object-fit: cover;
}
.logo{
    width:250px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin: 0 auto;
}

/* Video frame overlay */
.video-frame-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56.25vh; /* 9:16 aspect ratio (9/16 = 0.5625) */
    height: 100vh;
    transform: translate(-50%, -50%);
    background-image: url('images/videoFrame.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 5;
}

/* Scroll down button styles */
.scroll-down-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 5px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.scroll-down-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%) translateY(-3px);
    border-color: rgba(255, 255, 255, 1);
}

.scroll-down-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 18px solid rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Content wrapper with gradient */
.content-wrapper {
    background: linear-gradient(to bottom, #F7EBCF, #D9C4A0);
    min-height: 100vh;
    padding-bottom: 50px; /* Space above footer */
}

/* Section styles */
.section { 
    display: flex; 
    flex-wrap: wrap; 
    padding: 40px 20px; 
    max-width: 1200px; 
    margin: auto; 
}

/* App Store links section */
.app-store-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.app-store-link {
    display: inline-block;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.app-store-link:hover {
    transform: translateY(-3px);
}

.app-store-link img {
    height: 60px;
    width: auto;
    border: none;
    background: transparent;
    display: block;
    margin: 0;
    padding: 0;
}

/* Three column layout for text sections */
.text-columns {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.text-column {
    flex: 1;
    min-width: 300px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}
.text-column-full {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.text, .image { 
    flex: 1; 
    min-width: 300px; 
    box-sizing: border-box; 
    padding: 10px; 
    border-radius: 10px;
}

.roundedEdges {
    border-radius: 20px;
}
.pixelBorder {
    border: 1px solid #5c5c5c;
}
.dropShadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text { 
    flex-basis: 66%; 
}

.image { 
    flex-basis: 33%; 
}

/* Screenshot gallery styles */
.screenshot-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.screenshot-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    box-sizing: border-box;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.screenshot-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Footer styles */
footer { 
    text-align: center; 
    padding: 10px; 
    background: #181818ce; 
    font-size: 0.8em; 
    width: 100%;
    margin-left:25%;
    margin-right:25%;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

footer img {
    display: inline-block;
    width: 120px;
    height: auto;
    margin: 0 10px;
    vertical-align: middle;
    max-height: 120px;
    object-fit: contain;
}

/* Link styles */
a { 
    color: #0073e6; 
    text-decoration: none; 
}

a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .scroll-down-btn {
        width: 45px;
        height: 45px;
        bottom: 25px;
    }
    
    .scroll-down-btn::after {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 8px solid rgba(255, 255, 255, 0.8);
    }
    
    .text, .image {
        flex-basis: 100%;
    }
    
    .app-store-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .app-store-link img {
        height: 50px;
    }
    
    .text-columns {
        flex-direction: column;
        gap: 20px;
    }
    
    .text-column {
        min-width: auto;
    }
    
    .screenshot-gallery {
        flex-direction: column;
        align-items: center;
    }
    
    .screenshot-item {
        min-width: 280px;
        max-width: 100%;
    }
} 