@font-face {
  font-family: "TheBoldFont";
  src: url("Fonts/THEBOLDFONT-FREEVERSION.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Coolvetica";
  src: url("Fonts/Coolvetica\ Rg.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Sunlight";
  src: url("Fonts/Sunlight\ Dreams.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Vogue";
  src: url("Fonts/Classyvogueregular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

*::before, *::after {
  box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, rgb(121, 121, 255), rgb(255, 194, 81), white);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

.TitleDiv {
    width: 100%;
    height: 100px;
    margin: 0px;
    display: flex;
    align-items: flex-start;
    margin: 0;
}

.Title {
    font-family: "TheBoldFont", sans-serif;
    padding: 0px;
    font-size: 60px;
    margin-top: 20px;
    margin-bottom: 0px;
    margin-left: 20px;
    margin-right: 0;
}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    padding: 40px 20px;
}

.about-section {
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-family: "TheBoldFont", sans-serif;
    font-size: 48px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    color: #1f1515;
}

.about-text {
    font-family: "Vogue", serif;
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin: 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Styles */
.footer {
    width: 100%;
    background-color: rgb(31, 21, 21);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 80px;
    margin-top: 80px;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    max-width: 500px;
}

.footer-brand {
    font-family: "TheBoldFont", sans-serif;
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 15px;
}

.footer-description {
    font-family: "Vogue", serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.footer-right {
    flex: 0;
    min-width: 200px;
}

.footer-title {
    font-family: "Vogue", serif;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: "Vogue", serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    transition: 200ms;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
    transition: 200ms;
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablets and smaller */
@media (max-width: 1024px) {
    .Title {
        font-size: 50px;
    }
    
    .about-section {
        padding: 50px 40px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .about-text {
        font-size: 18px;
    }
}

/* Mobile landscape and smaller tablets */
@media (max-width: 768px) {
    .Title {
        font-size: 42px;
        margin-left: 15px;
    }
    
    .TitleDiv {
        height: 80px;
    }
    
    .content-wrapper {
        padding: 30px 15px;
        min-height: calc(100vh - 100px);
    }
    
    .about-section {
        padding: 40px 30px;
        border-radius: 15px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .about-text {
        font-size: 17px;
        line-height: 1.7;
        text-align: left;
    }
    
    .footer {
        flex-direction: column;
        padding: 40px 30px;
        margin-top: 60px;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .footer-brand {
        font-size: 32px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .Title {
        font-size: 36px;
        margin-left: 10px;
        margin-top: 15px;
    }
    
    .TitleDiv {
        height: 70px;
    }
    
    .content-wrapper {
        padding: 20px 10px;
        min-height: calc(100vh - 90px);
    }
    
    .about-section {
        padding: 30px 20px;
        border-radius: 12px;
        max-width: 95%;
    }
    
    .section-title {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .about-text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .footer {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .footer-brand {
        font-size: 28px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-title {
        font-size: 18px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
}