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

:root {
    --orange: #C83803;
    --navy: #060644;
    --white: #ffffff;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--orange);
    color: var(--white);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header / Logo */
.header {
    text-align: center;
    padding: 20px 0;
}

.logo {
    max-width: 180px;
    height: auto;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex: 1;
    padding: 40px 0;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hero-cta {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Buttons */
.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 40px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--white);
}

.btn-secondary {
    background-color: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background-color: transparent;
    border-color: var(--white);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

.profile-photo {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    border: 6px solid var(--navy);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    margin-top: auto;
}

.footer p {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: rgba(6, 6, 68, 0.3);
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .hero-image {
        max-width: 350px;
    }

    .buttons {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

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

    .hero-text {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }

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

    .btn {
        width: 100%;
        max-width: 250px;
    }
}
