/* Global Styles */
:root {
    --primary-color: #FFA500;
    --text-color: #333;
    --bg-color: #fff;
    --nav-bg: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] {
    --text-color: #fff;
    --bg-color: #1a1a1a;
    --nav-bg: rgba(26, 26, 26, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

section {
    min-height: 100vh;
    width: 100%;
    scroll-margin-top: 80px;
}

/* Navigation Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    height: 80px;
}

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

.logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px var(--primary-color);
    border-width: 3px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, #FFA500, #0066CC); /* Orange to Blue */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

[data-theme="dark"] .logo span {
    background: linear-gradient(45deg, #FFA500, #FFFFFF); /* Orange to White in dark mode */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span:hover {
    transform: translateX(5px);
    background: linear-gradient(45deg, #0066CC, #FFA500); /* Blue to Orange on hover */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .logo span:hover {
    background: linear-gradient(45deg, #FFFFFF, #FFA500); /* White to Orange on hover in dark mode */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    margin-right: 1.5rem;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    background: url('home-bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 24, 50, 0.3);
}

[data-theme="dark"] .hero::before {
    background: rgba(0, 24, 50, 0.5);
}

.hero-content {
    position: relative;
    max-width: 800px;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary-color);
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-content p {
    margin: 0 auto 2rem;
    line-height: 1.6;
    max-width: 90%;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.primary-btn,
.secondary-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.primary-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.secondary-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

/* About Section Styles */
.about-section {
    background: url('mosque-bg.jpg') center/cover fixed no-repeat;
    position: relative;
    padding: 120px 5% 60px;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 24, 50, 0.3);
    z-index: 1;
}

[data-theme="dark"] .about-section::before {
    background: rgba(0, 24, 50, 0.5);
}

.about-header,
.why-choose-us,
.our-mission {
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.why-choose-us {
    padding: 60px 0;
    background: rgba(0, 24, 50, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .why-choose-us {
    background: rgba(0, 24, 50, 0.5);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 5%;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

[data-theme="dark"] .feature-card {
    background: rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.our-mission {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 5%;
    background: rgba(0, 24, 50, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .our-mission {
    background: rgba(0, 24, 50, 0.5);
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.mission-content p {
    line-height: 1.8;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.success-counter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-box {
    text-align: center;
    padding: 30px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.2);
}

[data-theme="dark"] .counter-box {
    background: rgba(255, 165, 0, 0.15);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

.counter-box .number {
    display: block;
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.counter-box .label {
    color: #fff;
    font-size: 1.1rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    /* About Section Responsive */
    .our-mission {
        grid-template-columns: 1fr;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .why-choose-us {
        padding: 40px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services Section Responsive */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .custom-assistance {
        padding: 30px 20px;
    }
}

/* Services Section Styles */
.services-section {
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(0, 24, 50, 0.85), rgba(0, 24, 50, 0.85)), url('mosque-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 5% 80px;
    color: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.services-header .underline {
    height: 4px;
    width: 80px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
}

.services-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 30px;
    margin: 2rem 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.5);
}

/* Making the featured card stand out a bit more */
.service-card.featured {
    border-width: 2px;
    box-shadow: 0 0 25px rgba(255, 165, 0, 0.4);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
}

.service-card p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.check-icon {
    color: #4CAF50;
    margin-right: 10px;
    font-weight: bold;
}

.learn-more-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.learn-more-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.custom-assistance {
    background-color: rgba(30, 80, 150, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin-top: 80px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .custom-assistance {
    background-color: rgba(30, 80, 150, 0.5);
}

.custom-assistance h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.custom-assistance p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.consultation-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.consultation-btn:hover {
    background-color: #e69500;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Media Queries */
@media (max-width: 768px) {
    /* Navigation Responsive */
    .nav-links {
        display: none;
    }

    /* Hero Section Responsive */
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    /* About Section Responsive */
    .our-mission {
        grid-template-columns: 1fr;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .why-choose-us {
        padding: 40px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services Section Responsive */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .custom-assistance {
        padding: 30px 20px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 120px 5% 80px;
    background-color: var(--bg-color);
    background: linear-gradient(rgba(15, 9, 9, 0.849), rgba(0, 0, 0, 0.651)), url('travel.jpg') center/cover no-repeat;
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 5px solid;
    border-image: linear-gradient(45deg, rgba(255, 140, 0, 0.3), rgba(255, 215, 0, 0.3)) 1;
    background-clip: padding-box;
}

[data-theme="dark"] .gallery-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid;
    border-image: linear-gradient(45deg, #ff8c00, #ffd700) 1;
}

[data-theme="dark"] .gallery-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 3px solid;
    border-image: linear-gradient(45deg, #ff8c00, #ffd700) 1;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 24, 50, 0.3);
    z-index: 1;
}

[data-theme="dark"] .gallery-item::before {
    background: rgba(0, 24, 50, 0.5);
}

.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    color: white;
}

.gallery-content h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Gallery Item Backgrounds */
.france {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('france.jpg') center/cover no-repeat;
}

.germany {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('germany.jpg') center/cover no-repeat;
}

.italy {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('Italy.webp') center/cover no-repeat;
}

.switzerland {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('switzerland.avif') center/cover no-repeat;
}

.spain {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('spain.jpeg') center/cover no-repeat;
}

.netherlands {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('netherlands.jpg') center/cover no-repeat;
}

.gallery-cta {
    background: rgba(30, 80, 150, 0.3);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    margin: 0 auto;
    max-width: 900px;
}

[data-theme="dark"] .gallery-cta {
    background: rgba(30, 80, 150, 0.5);
}

.gallery-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.gallery-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles for Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 80px 3% 50px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-header h1 {
        font-size: 2rem;
    }
    
    .gallery-cta h2 {
        font-size: 1.8rem;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 6rem 2rem;
    background-color: var(--bg-color);
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('contact2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1400px; /* Increased from 1200px */
    margin: 0 auto 4rem;
    gap: 3rem; /* Increased from 2rem */
    padding: 0 2rem; /* Added padding for better spacing */
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem; /* Increased from 2rem */
    flex: 1.5; /* Increased from 1 to make contact info wider */
    min-width: 350px; /* Increased from 300px */
}

.contact-card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    border-radius: 10px;
    padding: 2.5rem; /* Increased from 2rem */
    flex: 1;
    min-width: 300px; /* Increased from 250px */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #FFA500; /* Orange border */
    backdrop-filter: blur(5px);
    color: #ffffff;
    margin: 0 0.5rem; /* Added horizontal margin */
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: #FFB700; /* Brighter orange on hover */
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mail-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFA500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.contact-card p {
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.05rem; /* Slightly increased font size */
    text-align: center;
}

.social-media {
    flex: 1;
    min-width: 350px; /* Increased from 300px */
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    border-radius: 10px;
    padding: 2.5rem; /* Increased from 2rem */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFA500; /* Orange border */
    backdrop-filter: blur(5px);
    margin: 0 0.5rem; /* Added horizontal margin */
}

.social-media h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #FFA500;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease, border 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
    width: 100px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    border: 1px solid #FFA500; /* Thin orange border */
}

.social-icon svg {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.social-icon span {
    font-size: 0.9rem;
}

.social-icon:hover {
    transform: translateY(-5px);
    border-color: #FFB700; /* Brighter orange on hover */
    box-shadow: 0 0 5px rgba(255, 165, 0, 0.3); /* Subtle glow on hover */
}

.social-icon.facebook:hover svg {
    fill: #1877F2;
}

.social-icon.instagram:hover svg {
    fill: #E4405F;
}

.social-icon.tiktok:hover svg {
    fill: #fafafa;
}

[data-theme="light"] .social-icon.tiktok:hover svg {
    fill: #ffffff;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: rgba(255, 165, 0, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFA500; /* Orange border */
    background-image: url('https://maps.googleapis.com/maps/api/staticmap?center=38.7909,-9.1664&zoom=13&size=1200x400&markers=color:orange%7C38.7909,-9.1664&key=YOUR_API_KEY');
    background-size: cover;
    background-position: center;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.1); /* Reduced opacity for better visibility */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    pointer-events: none; /* Allow clicks to pass through to the map */
}

.map-overlay::after {
    content: 'Lisbon, Portugal (38°47\'27.3"N 9°09\'58.9"W)';
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 165, 0, 0.8);
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    pointer-events: none; /* Allow clicks to pass through to the location label */
}

/* Responsive styles for contact section */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 0 1rem; /* Reduced padding for mobile */
        gap: 2rem; /* Reduced gap for mobile */
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem; /* Reduced gap for mobile */
        min-width: auto; /* Remove min-width constraint */
    }
    
    .contact-card, .social-media {
        min-width: auto; /* Remove min-width constraint */
        padding: 1.5rem; /* Reduced padding for mobile */
        margin: 0 0.25rem; /* Reduced margin for mobile */
        height: auto; /* Allow height to adjust based on content */
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 80px;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-card, .social-media {
        padding: 1.2rem; /* Further reduced padding for smaller screens */
        margin: 0; /* Remove margin for smaller screens */
        max-height: none; /* Allow content to determine height */
    }
    
    .contact-container {
        padding: 0 0.5rem; /* Further reduced padding for smaller screens */
        gap: 1.5rem; /* Further reduced gap for smaller screens */
    }
    
    .contact-info {
        gap: 1.5rem; /* Further reduced gap for smaller screens */
    }
    
    .contact-card h3, .social-media h3 {
        font-size: 1.3rem; /* Smaller heading for mobile */
        margin-bottom: 0.75rem; /* Reduced margin for mobile */
    }
    
    .contact-card p {
        font-size: 0.95rem; /* Smaller text for mobile */
        margin-bottom: 0.3rem; /* Reduced margin between paragraphs */
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-header h1 {
        font-size: 2rem;
    }
    
    .gallery-cta h2 {
        font-size: 1.8rem;
    }
}

.emoji-icon {
    width: 50px;
    height: 50px;
    vertical-align: middle;
    display: inline-block;
    background-color: #FFA500;
    border-radius: 50%;
    padding: 10px;
}

.mail-icon {
    width: 1px;
    height: 1px;
    vertical-align: middle;
}

.email-icon {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-right: 10px;
    display: inline-block;
}

.email-text {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;

}
  
