@font-face {
    font-family: 'Neue Regrade Regular';
    src: url('fonts/Neue Regrade Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Neue Regrade Regular';
    src: url('fonts/Neue Regrade Bold.otf') format('opentype');
    font-weight: bold;
    font-style: bold;
}
@font-face {
    font-family: 'Neue Regrade Regular';
    src: url('fonts/Neue Regrade Semibold.otf') format('opentype');
    font-weight: semi-bold;
    font-style: semi-bold;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Neue Regrade Regular', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FAF7F0;
    color: #333;
}

/* Header Section */
.header {
    background-color: #FAF7F0;
    margin-top: 78px;
    padding: 20px 0;
    /* border-bottom: 1px solid #e0dcd0; */
}

.logo {
    max-height: 60px;
    width: auto;
    display: block;
    margin-bottom: 5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.design-studio-text {
    font-size: 12px;
    color: #8b7355;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn {
    background-color: #9D6E42;
    color: white;
    padding: 8px 15px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background-color: #9D6E42;
    text-decoration: none;
    color: black;
}

/* Hero Section */
.hero {
    /* background-color: #000; */
    padding: 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    width: 800px;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-video iframe {
    width: 800px;
    height: 100%;
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    margin: 20px 0;
    line-height: 1.2;
}

.hero-title strong {
    font-weight: 600;
}

.hero-tagline {
    font-size: 48px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

/* Badge Style */
.section-badge {
    display: inline-block;
    background-color: #9C6D41;
    color: white;
    padding: 2px 8px;
    font-size: 20px;
    font-weight: semi-bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    height: 30px;
}

/* Section Styles */
section {
    padding: 40px 0;
}

.objective-section,
.strategy-section {
    background-color: #ffffff;
}

.initiative-section {
    background-color: #ffffff;
}

.experience-section {
    background-color: #FAF7F0;
}

/* Objective Section */
.objective-content {
    /* max-width: 800px; */
    margin: 0 auto;
}

.objective-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.objective-goals {
    margin-top: 40px;
}

.goal-item {
    margin-bottom: 25px;
}

.goal-title {
    font-size: 14px;
    color: #5d4e37;
    margin-bottom: 4px;
}

.goal-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    padding-left: 20px;
}

/* Initiative Section */
.initiative-item {
    margin-bottom: 40px;
}

.initiative-title {
    font-size: 14px;
    font-weight: bold;
    color: #9C6D41;
    margin-bottom: 10px;
}

.initiative-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-left: 15px;
}

/* Strategy Section */
.strategy-text {
    /* max-width: 800px; */
    margin: 0 auto;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Experience Section */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.experience-item {
    background-color: #ffffff;
    padding: 10px;
}

.exp-icon {
    font-size: 48px;
    color: #8b6f47;
    margin-bottom: 15px;
}

.exp-title {
    font-size: 14px;
    font-weight: bold;
    color: #5d4e37;
    margin-bottom: 10px;
}

.exp-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Device Mockups */
.mockup-section {
    text-align: center;
}

.mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.mockup-item {
    max-width: 200px;
}

.mockup-item img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Mobile Section */
.mobile-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.mobile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-phone {
    text-align: center;
}

.mobile-phone img {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.15));
}

.mobile-content h3 {
    font-size: 16px;
    font-weight: bold;
    color: #5d4e37;
    margin-bottom: 20px;
}

.mobile-feature {
    margin-bottom: 20px;
    text-align: left;
}

.mobile-feature h4 {
    font-size: 14px;
    font-weight: bold;
    color: #9C6D41;
    margin-bottom: 8px;
    letter-spacing: 1.1px;
}

.mobile-feature p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    letter-spacing: 0.8px;
    margin-left: 15px;
}

/* Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.impact-card {
    background-color: #9C6D41;
    color: white;
    padding: 0px;
    text-align: center;
}

.impact-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 0px;
}

.impact-label {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

.impact-description {
    font-size: 13px;
    color: #f5f1e8;
    line-height: 1.6;
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: #3d3020;
    color: #ddd;
    text-align: center;
    padding: 30px 0;
    font-size: 13px;
}

/* Button Transitions */
.cta-btn {
    transition: all 0.3s ease;
}

section.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 28px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
}
