/* Vibees Main CSS - Consolidated file for Hostinger compatibility */

/* CSS Variables - Global Color Palette and Settings */
:root {
    /* Main colors */
    --primary-color: #F4C430; /* Honey gold */
    --secondary-color: #FFB300; /* Amber */
    --dark-color: #4E342E; /* Brown */
    --light-color: #FFF8E1; /* Light honey */
    --accent-color: #FF9800; /* Orange */
    
    /* Text colors */
    --text-color: #333333;
    --light-text: #FFFFFF;
    --dark-text: #212121;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #F4C430, #FF9800);
    --gradient-secondary: linear-gradient(135deg, #FFF8E1, #FFD54F);
    --gradient-dark: linear-gradient(135deg, #4E342E, #3E2723);
    
    /* Other variables */
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #FFFFFF;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation Styles */
.top-bar {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--light-text);
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
}

.social-icons a {
    color: var(--light-text);
    margin-left: 15px;
    font-size: 14px;
}

.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* Breadcrumb Styles */
.breadcrumb {
    background-color: var(--light-color);
    padding: 10px 0;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #999;
}

.breadcrumb-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-item:last-child .breadcrumb-link {
    color: var(--primary-color);
    font-weight: 500;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: none;
}

.hexagon-btn {
    position: relative;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    z-index: 1;
}

.hexagon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.hexagon-btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(255, 160, 0, 0.4);
}

.btn-primary:hover {
    background: var(--gradient-dark);
    color: var(--light-text);
    box-shadow: 0 6px 20px rgba(78, 52, 46, 0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: var(--light-text);
    box-shadow: 0 6px 20px rgba(255, 160, 0, 0.4);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 700px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(78, 52, 46, 0.7), rgba(78, 52, 46, 0.7));
    background-size: cover;
    background-position: center;
    color: var(--light-text);
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hero-image {
    max-width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 48%;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-text);
}

/* Section Styling */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

/* Hexagonal Menu Styles */
.hexagon-menu {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 30px 0;
}

.hex-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Base hexagon styles */
.hex-item {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 5px;
    background-color: #F4C430; /* Golden yellow color */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.hex-item:hover {
    transform: scale(1.05);
}

.hex-content {
    text-align: center;
    padding: 10px;
}

.hex-content span {
    color: #000;
    font-weight: bold;
    font-size: 16px;
    text-decoration: underline;
    line-height: 1.2;
}

/* Team Section - Man Behind Page */
.team-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    width: 100%;
    max-width: 350px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-role {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-bio {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Logo Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background-color: #fff;
}

.philosophy-container {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.logo-column {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.philosophy-logo {
    max-width: 750px;
    height: auto;
    transition: transform 0.3s ease;
}

.philosophy-logo:hover {
    transform: scale(1.05);
}

.text-column {
    flex: 0 0 60%;
    position: relative;
}

.text-column::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.philosophy-text {
    padding-left: 20px;
}

.philosophy-item {
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.philosophy-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.philosophy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Footer Styles */
.footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-text {
    font-size: 0.95rem;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Problem Cards Styling */
.problems-section {
    padding: 80px 0;
    background-color: #fff8e1;
    position: relative;
    overflow: hidden;
}

.problems-section .section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 30px;
}

.problems-section .section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 165, 0, 0.1);
    transform: translateY(-50%) rotate(30deg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
}

.problems-section .section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 165, 0, 0.1);
    transform: translateY(-50%) rotate(30deg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
}

/* Hexagonal background decorations */
.problems-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 230px;
    background: rgba(255, 165, 0, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
    transform: rotate(30deg);
}

.problems-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 230px;
    background: rgba(255, 165, 0, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
    transform: rotate(15deg);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    clip-path: polygon(3% 0, 97% 0, 100% 3%, 100% 97%, 97% 100%, 3% 100%, 0 97%, 0 3%);
}

.problem-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 165, 0, 0.1);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.problem-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.3);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFA500, #FF8C00);
    z-index: -1;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

.problem-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.problem-card:hover::after {
    opacity: 1;
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: #FFF8E1;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.2);
}

.problem-card:hover .problem-icon {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: rotate(10deg);
}

.problem-icon i {
    font-size: 32px;
    color: #FFA500;
    transition: all 0.4s ease;
}

.problem-card:hover .problem-icon i {
    color: #fff;
    transform: scale(1.2);
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.problem-card:hover h3 {
    color: #FF8C00;
}

.problem-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #FFA500;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

.problem-card:hover h3::after {
    width: 100%;
    background: linear-gradient(90deg, #FFA500, #FF8C00);
}

.problem-card p {
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.problem-card:hover p {
    color: #444;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    font-weight: bold;
    color: rgba(255, 165, 0, 0.1);
    transition: all 0.3s ease;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 165, 0, 0.03);
}

.problem-card:hover .card-number {
    color: rgba(255, 165, 0, 0.2);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .philosophy-container {
        flex-direction: column;
    }
    
    .logo-column, .text-column {
        flex: 0 0 100%;
    }
    
    .text-column::before {
        display: none;
    }
    
    .philosophy-text {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hex-item {
        width: 90px;
        height: 90px;
    }
    
    .hex-content span {
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 400px) {
    .hex-item {
        width: 70px;
        height: 70px;
    }
    
    .hex-content span {
        font-size: 12px;
    }
}
