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

.mockup {
 height: 500px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(61, 205, 143, 0.5);;
}

.footer {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-top: 1px solid rgba(76, 175, 80, 0.2);
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.footer-menu a:hover {
    opacity: 0.8;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-brand {
    display: flex;
    color: white;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand img {
   height: 37px;
}

.brand-icon {
    height: 100px;
    width: 200px;
}

.brand-text {
    font-size: 1.25rem;
    letter-spacing: 2px;
     font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.brand-link {
    color: inherit;
    text-decoration: none;
}

.brand-subtitle {
    font-size: 0.7rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
font-size: 0.7rem;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #1a1e26 100%);
    position: relative;
    overflow: hidden;
}

/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(76,175,80,0.3)"/><circle cx="60" cy="30" r="1" fill="rgba(76,175,80,0.2)"/><circle cx="80" cy="60" r="1.5" fill="rgba(76,175,80,0.25)"/><circle cx="30" cy="70" r="1" fill="rgba(76,175,80,0.2)"/><circle cx="90" cy="20" r="1" fill="rgba(76,175,80,0.3)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-20px) translateX(-10px); }
    100% { transform: translateY(0px) translateX(0px); }
} */

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* App Store Buttons */
.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-buttons img {
    width: 200px;
}


.button-icon {
    font-size: 1.5rem;
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.button-small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.button-large {
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Phone Mockup */
.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: #f8f9fa;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2f3a 0%, #1f232c 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.phone-header {
    padding: 10px 20px;
    display: flex;
    justify-content: center;
}

.phone-dots {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.line {
    width: 40px;
    height: 3px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}

.phone-content {
    padding: 0;
    height: calc(100% - 80px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Climbing App Styles */
.climbing-app {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #000;
    color: white;
}

.app-header {
    padding: 0.75rem 1rem;
    background: #000;
}

.header-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-button {
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.route-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.heart-icon {
    color: #4caf50;
    font-size: 1.2rem;
}

.menu-icon {
    color: white;
    font-size: 1.2rem;
}

.route-image {
    height: 120px;
    overflow: hidden;
}

.route-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-details {
    flex: 1;
    padding: 1rem;
    background: #000;
    overflow-y: auto;
}

.route-info {
    margin-bottom: 1.5rem;
}

.route-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: white;
}

.route-grade {
    display: inline-block;
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.route-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.location-icon {
    font-size: 0.8rem;
}

.route-description {
    margin-bottom: 1.5rem;
}

.route-description h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: white;
}

.route-description p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.send-button {
    width: 100%;
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: white;
    border: none;
    padding: 0.875rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.send-button:hover {
    background: linear-gradient(135deg, #5cbf60 0%, #4caf50 100%);
    transform: translateY(-1px);
}

.rocket-icon {
    font-size: 1rem;
}

.route-metadata {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.metadata-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metadata-item:last-child {
    border-bottom: none;
}

.metadata-icon {
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.metadata-label {
    flex: 1;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.metadata-value {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.phone-bottom {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.home-button {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    background: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 6rem 1rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .phone-mockup {
        transform: none;
    }

    .app-buttons {
        justify-content: center;
    }

    .route-image {
        height: 100px;
    }

    .route-details {
        padding: 0.75rem;
    }

    .route-name {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .phone-frame {
        width: 200px;
        height: 400px;
    }

    .route-image {
        height: 80px;
    }

    .route-details {
        padding: 0.5rem;
    }

    .route-name {
        font-size: 1.1rem;
    }

    .send-button {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Support Page Styles */
.support-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #1a1e26 100%);
    padding-top: 6rem;
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
}

.support-header {
    text-align: center;
    margin-bottom: 3rem;
}

.support-title {
    font-family: "Anton", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.support-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.form-intro {
    margin-bottom: 2rem;
}

.form-intro h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.form-intro p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.google-form-wrapper {
    position: relative;
}

.google-form {
    width: 100%;
    border: none;
    border-radius: 8px;
    background: white;
}

.form-placeholder {
    background: rgba(76, 175, 80, 0.1);
    border: 2px dashed rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.form-placeholder p:first-child {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.form-instructions {
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-placeholder ol {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.form-placeholder li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.form-fallback {
    margin-top: 1rem;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.fallback-link {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
}

.fallback-link:hover {
    text-decoration: underline;
}

.support-footer {
    text-align: center;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(61, 205, 143, 1);
    color: black;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid rgba(76, 175, 80, 0.3);
    font-weight: 500;
}

.back-home-btn:hover {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design for Support Page */
@media (max-width: 768px) {
    .support-content {
        padding: 1rem;
    }
    
    .support-title {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .form-placeholder {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .support-title {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 1rem;
    }
    
    .form-placeholder {
        padding: 1.5rem 0.75rem;
    }
    
    .form-placeholder ol {
        padding-left: 1rem;
    }
}