/* Classic Old Theme Style - Single CSS File */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #f4e9d8;
    color: #3a2e1f;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

/* Old Paper Background Effect */
.old-paper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(200, 180, 150, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(200, 180, 150, 0.1) 25%, transparent 25%);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

.old-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 240, 200, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #f4e9d8;
    padding: 20px 0;
    border-bottom: 5px solid #d4af37;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.header::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: repeating-linear-gradient(45deg, #d4af37, #d4af37 10px, #b8942e 10px, #b8942e 20px);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    border: 3px solid #d4af37;
    border-radius: 50%;
    overflow: hidden;
    background: #f4e9d8;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-name h1 {
    font-size: 2.2em;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.company-name .subtitle {
    font-size: 1.1em;
    color: #d4af37;
    font-weight: 500;
}

.old-contact {
    display: flex;
    gap: 30px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
}

.contact-item i {
    color: #d4af37;
    font-size: 1.2em;
}

/* Navigation Bar */
.nav-bar {
    background: #3a2e1f;
    border-bottom: 3px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #f4e9d8;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
    padding: 15px 0;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: #d4af37;
}

/* Sections */
.section {
    display: none;
    padding: 50px 0;
}

.section.active {
    display: block;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    animation: fadeInUp 1s ease;
}

.reveal-text-delay {
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
    color: #2c3e50;
    position: relative;
}

.old-title-decoration {
    display: inline-block;
    padding: 0 30px;
    position: relative;
}

.old-title-decoration::before,
.old-title-decoration::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 1.2em;
}

.old-title-decoration::before {
    left: 0;
}

.old-title-decoration::after {
    right: 0;
}

/* Old Border Style */
.old-border {
    border: 15px solid transparent;
    border-image: repeating-linear-gradient(45deg, #d4af37, #d4af37 10px, #b8942e 10px, #b8942e 20px);
    border-image-slice: 15;
    background: rgba(244, 233, 216, 0.7);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.hero-text h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.3;
}

.hero-text p {
    font-size: 1.2em;
    color: #3a2e1f;
}

.hero-image {
    border: 5px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Activities List - New style without images */
.activities-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: white;
    border: 1px solid #d4af37;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.activity-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #d4af37, #b8942e);
    transition: width 0.3s ease;
}

.activity-item:hover {
    transform: translateX(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.activity-item:hover::before {
    width: 8px;
}

.activity-icon {
    min-width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border: 3px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: #d4af37;
    transition: all 0.3s ease;
}

.activity-item:hover .activity-icon {
    transform: rotate(360deg);
    background: #d4af37;
    color: #2c3e50;
}

.activity-content {
    flex: 1;
}

.activity-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3em;
    position: relative;
    display: inline-block;
}

.activity-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 50px;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.activity-item:hover .activity-content h3::after {
    width: 100%;
}

.activity-content p {
    color: #3a2e1f;
    line-height: 1.8;
    font-size: 1.05em;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

.about-image {
    border: 5px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #f4e9d8;
    padding: 30px;
}

.contact-info h3 {
    color: #d4af37;
    margin-bottom: 30px;
    font-size: 1.5em;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.info-item i {
    color: #d4af37;
    font-size: 1.3em;
    width: 30px;
}

.working-hours {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.working-hours h4 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.working-hours p {
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 30px;
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.5em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0d5c0;
    border-radius: 5px;
    font-family: 'Cairo', sans-serif;
    font-size: 1em;
    transition: all 0.3s ease;
    background: #f9f5eb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.submit-btn {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #f4e9d8;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Cairo', sans-serif;
    border: 2px solid #d4af37;
}

.submit-btn:hover {
    background: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #f4e9d8;
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 5px solid #d4af37;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: repeating-linear-gradient(45deg, #d4af37, #d4af37 10px, #b8942e 10px, #b8942e 20px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 1.1em;
    color: #d4af37;
}

.footer-links h4,
.footer-social h4 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #f4e9d8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #d4af37;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #f4e9d8;
    color: #2c3e50;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #d4af37;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(244, 233, 216, 0.2);
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-section {
        flex-direction: column;
        text-align: center;
    }
    
    .old-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }
    
    .hero {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .activity-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .activity-icon {
        margin-bottom: 15px;
    }
    
    .activity-content h3::after {
        right: 50%;
        transform: translateX(50%);
    }
}