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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #5ec5c3;
    color: #1a1a1a;
    border: none;
    border-radius: 3px;
}

.btn-primary:hover {
    background-color: #4db5b3;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-submit {
    background-color: #f0c14b;
    color: #1a1a1a;
    border: none;
    border-radius: 30px;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #e0b13b;
    transform: translateY(-2px);
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-right: 10%;
    max-width: 600px;
}

.hero-content .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 40px;
    color: #ffffff;
}

/* App Download Section */
#app-download {
    position: relative;
    margin-top: -120px;
    z-index: 10;
    padding: 0 20px;
}

.app-download-card {
    background-color: #ffffff;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.app-download-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
    flex: 1;
}

.qr-code {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* Contact Info & Links Section */
#contact-links {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.contact-info {
    text-align: left;
    margin-bottom: 60px;
}

.contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #5ec5c3;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.link-category h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-align: center;
}

.link-category .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    padding: 18px 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.social-icon i {
    font-size: 18px;
}

/* About Section */
#about {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.about-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-text p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
}

.about-text em {
    font-style: italic;
}

.about-image {
    flex-shrink: 0;
    width: 350px;
}

.about-image img {
    width: 100%;
    height: auto;
}

/* Divider */
.divider {
    height: 1px;
    background-color: #333;
    max-width: 1100px;
    margin: 0 auto;
}

/* Get Connected Section */
#get-connected {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.connected-container {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-top: 60px;
}

.dig-deep-image {
    flex-shrink: 0;
    width: 400px;
}

.dig-deep-image img {
    width: 100%;
    height: auto;
}

.connected-content {
    flex: 1;
}

.connected-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
}

.connected-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Books Section */
#books {
    background-color: #1a1a1a;
    padding: 80px 0;
}

#books .container {
    padding-top: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.book-item {
    text-align: center;
}

.book-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.book-item .btn {
    min-width: 200px;
}

/* Contact Form Section */
#contact-form {
    background-color: #1a1a1a;
    padding: 80px 0;
}

#contact-form > .container > h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    text-align: left;
    margin-top: 60px;
    margin-bottom: 15px;
}

.form-subtitle {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 50px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #5ec5c3;
    margin-bottom: 10px;
}

.form-description {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #e0e0e0;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 15px 20px;
    background-color: #2a2a2a;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.form-group input::placeholder {
    color: #666;
}

.phone-input {
    display: flex;
    align-items: center;
    background-color: #2a2a2a;
    border-radius: 5px;
    overflow: hidden;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background-color: #333;
    color: #ffffff;
    font-size: 14px;
}

.flag-icon {
    width: 20px;
    height: auto;
}

.phone-input input {
    flex: 1;
    background: transparent;
    border: none;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #e0e0e0;
    cursor: pointer;
}

.checkbox-label input,
.radio-label input {
    width: 18px;
    height: 18px;
    accent-color: #5ec5c3;
}

form {
    text-align: center;
}

form .form-group {
    text-align: left;
}

/* Footer */
footer {
    position: relative;
    padding-top: 100px;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #1a1a1a 0%, #0a2a4a 50%, #1a5a8a 100%);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
}

.footer-content p {
    font-size: 12px;
    letter-spacing: 2px;
    color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        padding-right: 5%;
    }

    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        max-width: 400px;
    }

    .connected-container {
        flex-direction: column;
    }

    .dig-deep-image {
        width: 100%;
        max-width: 400px;
    }

    .books-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-name {
        font-size: 60px;
    }

    .app-download-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .app-download-card h2 {
        font-size: 20px;
    }

    .links-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
    }

    #contact-form > .container > h2 {
        font-size: 28px;
    }

    .connected-content h2,
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 48px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 12px;
    }
}
