:root {
    --gold: #C6A769;
    --dark: #1A1A1A;
    --light: #ffffff;
    --text: #777777;
    --text-light: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* Header Section */
.page-header {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-color: var(--dark);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}


.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 3px;
    color: white;
  }

.header-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.header-subtitle:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}

/* Brand Logos Section */
.brand-logos {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.brand-logos-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 20px;
}

.brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%);
}

/* Profile Section */
.profile-section {
    padding: 100px 0;
    position: relative;
}

.profile-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.profile-image-container {
    position: relative;
    height: 600px;
}

.profile-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 20px 20px 0px rgba(198, 167, 105, 0.2);
}

.profile-image-secondary {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 10px solid var(--light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2;
}

.profile-content {
    padding: 40px 0;
}

.profile-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.highlight-bar {
    display: inline-block;
    background-color: var(--gold);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    padding: 8px 20px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 30px;
    border-left: 3px solid var(--gold);
}

.content-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* Vision Section with Image */
.vision-section {
    background-color: var(--light);
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.vision-image-container {
    max-width: 800px;
    margin: 0 auto 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.vision-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Philosophy Details Styles */
.philosophy-details {
    margin-top: 50px;
    text-align: left;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.philosophy-details h3 {
    color: var(--dark);
    font-size: 1.8rem;
    margin: 30px 0 20px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.philosophy-details h3:first-child {
    margin-top: 0;
}

.philosophy-details h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
}

.philosophy-details ul.styled-list {
    margin: 20px 0;
}

.philosophy-details ul.styled-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.philosophy-details ul.styled-list li strong {
    color: var(--dark);
    display: block;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.philosophy-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--dark);
    color: white;
}

.section-light {
    background-color: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--gold);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.grid-item {
    background-color: white;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-family: 'Work Sans', sans-serif;
}

.grid-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

/* List Styles */
.styled-list {
    list-style: none;
}

.styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.styled-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 2px;
    background-color: var(--gold);
}

/* Two Column Layout */
.two-column {
    columns: 2;
    column-gap: 60px;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Responsive Styles */
@media only screen and (max-width: 1024px) {
    .profile-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .profile-image-container {
        height: 500px;
    }
    
    .profile-image-secondary {
        width: 200px;
        height: 200px;
        bottom: -30px;
        right: -30px;
    }
    
    .two-column {
        columns: 1;
    }
}

@media only screen and (max-width: 768px) {
    .header-title {
        font-size: 3rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .profile-section, .vision-section {
        padding: 60px 0;
    }
    
    .profile-container {
        padding: 0 20px;
    }
    
    .profile-title {
        font-size: 2.2rem;
    }
    
    .quote {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .brand-logos-container {
        gap: 20px;
    }
    
    .brand-logo {
        height: 60px;
    }
}

@media only screen and (max-width: 480px) {
    .page-header {
        height: 70vh;
        min-height: 500px;
    }
    
    .header-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .profile-image-container {
        height: 400px;
    }
    
    .profile-image-secondary {
        width: 150px;
        height: 150px;
        bottom: -20px;
        right: -20px;
    }
    
    .brand-logos-container {
        flex-direction: column;
    }
}

.about-more-details {
    display: inline-block;
    background-color: transparent;
    color: #2F2F2F;
    padding: 15px 35px;
    border: 2px solid #2F2F2F;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    position: relative;
    margin-top: 30px;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    overflow: hidden;
    z-index: 1;
    margin-left: 67%;
}

.about-more-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #2F2F2F;
    transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: -1;
}

.about-more-details::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #2F2F2F;
    transition: width 0.3s ease;
}

.about-more-details:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-more-details:hover::before {
    width: 100%;
}

.about-more-details:hover::after {
    width: 100%;
}

/* Add a subtle pulse animation on hover */
@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(47, 47, 47, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(47, 47, 47, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(47, 47, 47, 0);
    }
}

.about-more-details:hover {
    animation: buttonPulse 1.5s infinite;
}

@media screen and (max-width: 768px) {
    .about-more-details {
        display: block;
        text-align: center;
        margin: 30px auto 0;
        max-width: 220px;
    }
}

/* Add these keyframe animations at the end of the file */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateInScale {
    from {
        opacity: 0;
        transform: rotate(-15deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Add reveal on scroll class */
.reveal {
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
}

/* Apply animations to elements */
.header-content {
    animation: fadeInUp 1.2s ease forwards;
}

.profile-image-main {
    animation: slideInLeft 1.2s ease forwards;
}

.profile-image-secondary {
    animation: rotateInScale 1.2s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.profile-content {
    animation: slideInRight 1.8s ease forwards;
}

.vision-image-container img {
    animation: scaleIn 1.2s ease forwards;
}

.grid-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(var(--item-index, 0) * 0.2s);
}

/* Add hover animations */
.grid-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add parallax effect to header */
.header-image {
    transform: translateZ(0);
    transition: transform 0.5s ease;
}

.page-header:hover .header-image {
    transform: scale(1.05);
}

/* Add floating animation to profile images */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.profile-image-container {
    animation: float 6s ease-in-out infinite;
}

/* Add text reveal animation */
@keyframes textReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

.section-title {
    animation: textReveal 1s ease forwards;
}

/* Add shine effect to highlight-bar */
@keyframes shine {
    from {
        background-position: -200% center;
    }
    to {
        background-position: 200% center;
    }
}

.highlight-bar {
    background: linear-gradient(
        90deg,
        var(--gold) 0%,
        #e3c792 50%,
        var(--gold) 100%
    );
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

/* Add wave effect to footer */
@keyframes wave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.footer {
    background: linear-gradient(
        45deg,
        var(--dark) 0%,
        #2a2a2a 50%,
        var(--dark) 100%
    );
    background-size: 200% 200%;
    animation: wave 10s ease infinite;
}

/* Responsive styles for philosophy details */
@media only screen and (max-width: 768px) {
    .philosophy-details {
        padding: 20px;
        margin-top: 30px;
    }

    .philosophy-details h3 {
        font-size: 1.5rem;
        margin: 25px 0 15px;
    }

    .philosophy-details ul.styled-list li {
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .philosophy-details p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media only screen and (max-width: 480px) {
    .philosophy-details {
        padding: 15px;
        margin-top: 20px;
    }

    .philosophy-details h3 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
}