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

@import url('https://fonts.googleapis.com/css2?family=Avenir:wght@300;400;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #5a5a5a;
    background-color: #fff;
}

strong, b {
    font-weight: 700;
}

a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #666;
}

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

/* Header and Navigation */
header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar {
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 200px;
    width: auto;
}

.contact-info {
    text-align: right;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #5a5a5a;
}

.contact-info p {
    margin: 4px 0;
}

.contact-info strong {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.social-links {
    margin-top: 8px;
}

.social-links a {
    display: inline-block;
    margin-left: 15px;
    font-size: 1.1rem;
    color: #0077b5;
}

.social-links a:first-child {
    margin-left: 0;
}

.social-links a:hover {
    color: #005582;
}

/* Beach Image Section with Hero Overlay */
.beach-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.beach-image {
    width: 100%;
    height: auto;
    display: block;
    min-height: 500px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.hero-overlay .container {
    background-color: rgba(245, 245, 245, 0.90);
    padding: 70px 80px;
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.hero-overlay h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: #3a3a3a;
    line-height: 1.3;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: #5a5a5a;
    line-height: 1.6;
    font-weight: 300;
}

.hero-subtext {
    font-size: 1rem;
    color: #7a7a7a;
    line-height: 1.6;
    font-weight: 300;
}

/* Content Sections */
section {
    padding: 70px 0;
}

section h2 {
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-align: center;
    color: #2c2c2c;
}

.subtitle {
    text-align: center;
    font-style: italic;
    color: #6a6a6a;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.section-desc {
    text-align: center;
    margin-bottom: 20px;
    color: #4a4a4a;
    font-size: 0.95rem;
}

/* About Section */
.about {
    background-color: #fff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
    color: #4a4a4a;
    font-size: 0.95rem;
}

/* Company Grid */
.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
    align-items: center;
    justify-items: center;
}

.company-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.company-item img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.company-item a:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Investees Section */
.investees {
    background-color: #fafafa;
}

.investees .company-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Exits Section */
.exits {
    background-color: #fff;
}

.exits .company-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Angel Stakes Section */
.angel-stakes {
    background-color: #fafafa;
}

.angel-stakes .company-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Community Section */
.community {
    background-color: #fff;
}

.community-content {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
}

.community-item img {
    max-width: 280px;
    height: auto;
    margin-bottom: 20px;
}

.community-desc {
    font-style: italic;
    color: #6a6a6a;
    margin-top: 15px;
    font-size: 0.95rem;
}

/* Awards Section */
.awards {
    background-color: #fafafa;
}

.awards-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.awards-image {
    flex: 0 0 280px;
}

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

.awards-text {
    flex: 1;
}

.awards-text h2 {
    text-align: left;
    margin-bottom: 10px;
}

.awards-text .subtitle {
    text-align: left;
    margin-bottom: 20px;
}

.awards-text p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #4a4a4a;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 40px 0 25px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-info p {
    margin: 4px 0;
    font-size: 0.875rem;
}

.footer-info strong {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-social a {
    display: inline-block;
    margin-left: 20px;
    font-size: 1.3rem;
    color: #0077b5;
}

.footer-social a:hover {
    color: #005582;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .angel-stakes .company-grid,
    .exits .company-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .logo img {
        height: 60px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .social-links a {
        margin: 0 10px;
    }
    
    .beach-section {
        min-height: 400px;
    }
    
    .hero-overlay {
        padding: 40px 15px;
    }
    
    .hero-overlay .container {
        padding: 35px 30px;
    }
    
    .hero-overlay h1 {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-subtext {
        font-size: 0.9rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .company-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
    
    .investees .company-grid,
    .exits .company-grid,
    .angel-stakes .company-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-item img {
        max-width: 140px;
    }
    
    .awards-content {
        flex-direction: column;
        gap: 35px;
    }
    
    .awards-image {
        flex: 0 0 auto;
        max-width: 250px;
    }
    
    .awards-text h2,
    .awards-text .subtitle {
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-social a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .beach-section {
        min-height: 350px;
    }
    
    .hero-overlay {
        padding: 30px 10px;
    }
    
    .hero-overlay .container {
        padding: 30px 20px;
    }
    
    .hero-overlay h1 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .hero-text {
        font-size: 0.95rem;
    }
    
    .hero-subtext {
        font-size: 0.85rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .company-grid,
    .investees .company-grid,
    .exits .company-grid,
    .angel-stakes .company-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-content p {
        text-align: left;
    }
}
