/* Global Styles */
@font-face {
    font-family: 'Corporate A';
    src: url('CorporateAPro-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Corporate A';
    src: url('CorporateAPro-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #1a2b4d; /* Dark navy blue from images */
    --secondary-color: #f13a3a; /* Bright red from images */
    --accent-color: #426685;
    --heading-text-color: #1a2b4d; /* Dark navy for headings */
    --body-text-color: #1a2b4d; /* Dark navy for body text */
    --light-bg: #f0ede5; /* Light beige background from images */
    --dark-bg: #1a2b4d; /* Dark navy background */
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --journey-color: #f13a3a; /* Red color for 'journey' text */
}



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

body {
    font-family: 'Inter', sans-serif;
    color: var(--body-text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-bg);
    font-size: 1.2rem;
}

h1, h2, h3, h4, h5 {
    font-family: 'Corporate A', serif;
    margin-bottom: 1rem;
    color: var(--heading-text-color);
    font-weight: bold;
    line-height: normal;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

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

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 58, 58, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(241, 58, 58, 0.4);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Emoji styling */
.emoji {
    font-family: 'Noto Color Emoji', sans-serif;
    font-size: 1.5rem;
    margin-right: 0.5rem;
    vertical-align: middle;
    display: inline-block;
    transform: translateY(-2px);
}

/* Fun emoji variations */
.emoji-large {
    font-size: 2.5rem;
    display: block;
    text-align: center;
    margin: 1rem 0;
}

.emoji-accent {
    color: var(--secondary-color);
}

.emoji-animated {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Journey text styling - matches the red 'journey' text in the image */
.journey-text {
    color: var(--journey-color);
    font-style: italic;
    font-family: 'Corporate A', serif;
    font-weight: normal;
    display: inline;
}

.accent-text {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Chapter styling - matches the 'Chapter 1' label in the image */
.chapter-label {
    background-color: var(--dark-bg);
    color: var(--white);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Quote styling */
.quote {
    font-family: 'Corporate A', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--secondary-color);
}

/* Signature styling - matches the signature at the bottom of the image */
.signature {
    font-family: 'Corporate A', serif;
    font-style: italic;
    font-size: 1.5rem;
    margin-top: 2rem;
    color: var(--primary-color);
    text-align: right;
}

/* Styling for the 'HEY I'm Tiara' section */
.hey-text {
    color: var(--secondary-color);
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.im-tiara {
    font-family: 'Corporate A', serif;
    font-style: italic;
    font-size: 2.5rem;
    display: inline-block;
    margin-left: 0.5rem;
}

/* Styling for the 'BY ACCIDENT' text */
.by-accident {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2em;
    letter-spacing: 1px;
}


/* Bullet point styling */
ul.custom-bullets {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

ul.custom-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

ul.custom-bullets li:before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(26, 43, 77, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 43, 77, 0.15);
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.video-container iframe,
.video-container video {    
    width: 100%;
    max-width: 400px;
    height: 100%;
    border-radius: 10px;
    background-color: var(--white);
}

video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.flex-item {
    flex: 1 1 300px;
}

.bilingual {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.en, .id {
    flex: 1 1 45%;
}


/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .bilingual {
        flex-direction: column;
    }
    
    .en, .id {
        flex: 1 1 100%;
    }
    
    .emoji {
        font-size: 1.3rem;
    }
    
    .chapter-label {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}
