/* Base Style */
* {
    margin: 1%;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #1a2a57 0%, #0d1b3a 100%);
    color: #fff;
    overflow-x: hidden;
}

/* Header and Navigation */
header {
    background-color: hwb(208 0% 63%);
    color: rgb(255, 213, 0);
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 20px 0;
    width: 100%;
    z-index: 100;
    scroll-behavior: smooth;
}

.header-content {
    display: flex;
    flex-direction: column; /* Stack logo and nav vertically */
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem; /* Space between logo and navigation */
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: rgb(255, 213, 0);
}

.logo i {
    margin-right: 10px;
}

div h2 {
    color: rgb(255, 213, 0);
    text-align: center;
    margin-bottom: 2rem;
}

/* Center the navigation */
.main-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.main-nav a {
    border: 2px solid #ffcc00;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    padding: 0.4rem 0.6rem;
    display: block;
}

.main-nav a:hover { 
    color: var(--accent); 
    background: rgba(15,98,254,0.06); 
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
}

nav ul li a:hover {
    color: #ffcc00;
}
/*Hero Section*/
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('image/Baia de Luanda.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 2rem;
    border-radius: 15px;
    margin: 20px auto;
    max-width: 1200px;
}

.hero-section div {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.hero-section h1 {
    color: rgb(255, 255, 255);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/*Why Visit Angola Section*/
.why-visit {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.why-visit li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffcc00;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    color: #fff;
}

a {
        color: #fff;
        text-decoration: none;
        border-radius: 6px;
}

.why-visit li:hover {
    transform: translateY(-5px);
}

/* Destinations */
#Destinations {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

#Destinations h1 {
    color: #ffcc00;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

#Destinations h3 {
    color: #ffcc00;
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 0.5rem;
    width: 100%;
}

#Destinations p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    width: 100%;
    text-align: justify;
}
/**/
.luanda-attractions {
    counter-reset: attraction-counter;
    list-style: none;
    padding-left: 0;
    width: 100%;
}

.luanda-attractions li {
    counter-increment: attraction-counter;
    margin-bottom: 3rem;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ffcc00;
    width: 100%;
    box-sizing: border-box;
}

.luanda-attractions li::before {
    content: counter(attraction-counter);
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #ffcc00;
    color: #0d1b3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 2;
}

.attraction-item {
    width: 100%;
}

.attraction-item h4 {
    margin-top: 0;
    color: #ffcc00;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 204, 0, 0.3);
    padding-bottom: 0.5rem;
}

.attraction-item p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: justify;
}

.attraction-item img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    display: block;
}

.attraction-item img:hover {
    transform: scale(1.02);
}

/* Quote Styling */
.attraction-item p i {
    display: block;
    text-align: center;
    font-style: italic;
    color: #ffcc00;
    background: rgba(255, 204, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #ffcc00;
    margin: 1.5rem 0;
}

/* Images Full Width */
#Destinations img {
    align-items: center;
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: block;
}

/* Center aligned text */
#Destinations p[style*="text-align: center"] {
    text-align: center !important;
    font-style: italic;
    color: #ccc;
    margin: 1rem 0;
}


/* General Section Styling */
section {
    margin: 30px auto;
    padding: 40px;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Headings */
h1, h2, h3, h4, h5 {
    margin-bottom: 1rem;
    color: #ffcc00;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* CTA Button */

.cta-button {
    display: inline-block;
    background: #ffcc00;
    color: #0d1b3a;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    margin: 1rem 0;
}

.cta-button:hover {
    background: #ffd84d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

/* Music Players */
.music-players {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.music-player {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.music-player:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.2);
}

.music-player h4 {
    color: #ffcc00;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.music-player audio {
    width: 100%;
    margin-bottom: 1rem;
}

/* Custom Audio Player Styling */
audio {
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
}

audio::-webkit-media-controls-panel {
    background: rgba(255, 255, 255, 0.1);
}

audio::-webkit-media-controls-play-button {
    background-color: #ffcc00;
    border-radius: 50%;
}

/* Food Gallery */
.food-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.food-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 204, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.food-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
}

.food-image {
    height: 200px;
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.food-item:hover .food-image img {
    transform: scale(1.1);
}

.food-info {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.food-info h4 {
    color: #ffcc00;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    border: none;
    padding: 0;
}

.food-info p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Art Gallery */
.Art-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.Art-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 204, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.Art-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
}

.Art-image {
    height: 200px;
    overflow: hidden;
}

.Art-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.Art-item:hover .Art-image img {
    transform: scale(1.1);
}

.Art-info {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Art-info h4 {
    color: #ffcc00;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    border: none;
    padding: 0;
}

.Art-info p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Festivals Gallery */
.Festivals-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.Festivals-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 204, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.Festivals-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
}

.Festivals-image {
    height: 200px;
    overflow: hidden;
}

.Festivals-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.Festivals-item:hover .Festivals-image img {
    transform: scale(1.1);
}

.Festivals-info {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Festivals-info h4 {
    color: #ffcc00;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    border: none;
    padding: 0;
}

.Festivals-info p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Section Dividers */
.culture-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Visit/Packages Section */
#Price {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#Price h3 {
    color: #ffcc00;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

#Price h5 {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

#Price > p {
    color: #e0e0e0;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Visit Gallery Grid */
.visit-gallery {
    margin-bottom: 4rem;
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.visit-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 204, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.visit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
}

.visit-image {
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
}

.visit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.visit-item:hover .visit-image img {
    transform: scale(1.1);
}

.visit-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.visit-info h4 {
    color: #ffcc00;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    border: none;
    padding: 0;
}

.duration {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.description {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.features li {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    padding-left: 1.2rem;
    position: relative;
}

.features li:before {
    content: "✓";
    color: #ffcc00;
    position: absolute;
    left: 0;
}

.visit-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

.price {
    color: #ffcc00;
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.per-person {
    color: #ccc;
    font-size: 0.9rem;
}

.visit-item .cta-button {
    margin: 0 1.5rem 1.5rem 1.5rem;
    text-align: center;
    display: block;
}

/* Custom Package Section */
.custom-package {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px dashed #ffcc00;
    margin-bottom: 3rem;
}

.custom-package h2 {
    color: #ffcc00;
    margin-bottom: 1rem;
}

.custom-package p {
    color: #ccc;
    margin-bottom: 2rem;
}

/* Map Container */
.map-container {
    text-align: center;
    margin-top: 3rem;
}

.map-container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


#Gallery {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

#Gallery h2 {
    color: #ffcc00;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Gallery Navigation */
.Gallery-header-content {
    margin-bottom: 1rem;
}

.Gallery-header-content .main-nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.Gallery-header-content .main-nav a {
    text-decoration: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border: 2px solid #ffcc00;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: block;
}

.Gallery-header-content .main-nav a:hover {
    background: #ffcc00;
    color: #0d1b3a;
    transform: translateY(-2px);
}

/* Gallery Container */
.gallery-container {
    width: 100%;
}

/* Gallery Sections */

.gallery-container h3 {
    color: #ffcc00;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 204, 0, 0.3);
    padding-bottom: 0.5rem;
}

/* Modern Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    width: 100%;
}

/* Different grid layouts for variety */
.Down-Town .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.beach .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.Food .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.people .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.nature .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Image Items */
.image-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Special wide images */
.image-item.wide {
    grid-column: span 2;
    aspect-ratio: 16/6;
}

.image-item.tall {
    grid-row: span 2;
    aspect-ratio: 3/4;
}

/* Image overlay for hover effect */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-item:hover .image-overlay {
    transform: translateY(0);
}



/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    text-align: left;
}

th {
    background-color: rgba(255, 204, 0, 0.3);
    color: #ffcc00;
}

/* Form Styling */
form {
    max-width: 600px;
    margin: 0 auto;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input[type="text"],
input[type="email"], 
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

input[type="submit"] {
    background-color: #ffcc00;
    color: #0d1b3a;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #ffd84d;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .luanda-attractions li {
        padding-left: 0;
        padding-top: 70px;
    }
    
    .luanda-attractions li::before {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    section {
        padding: 20px;
        margin: 20px 10px;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #Price {
        padding: 1rem;
    }
    
    .visit-info {
        padding: 1rem;
    }
    
    .map-container iframe {
        width: 100%;
        height: 250px;
    }
    
    .custom-package {
        padding: 2rem 1rem;
    }

    table {
    width: auto;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    min-width: 400px; 
    }

    .table-container {
        margin: 1rem 0;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    table {
        min-width: 200px;
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 8px 10px;
    }

     #Gallery {
        padding: 1rem;
    }
    
    .Gallery-header-content .main-nav ul {
        gap: 0.5rem;
    }
    
    .Gallery-header-content .main-nav a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .image-item.wide,
    .image-item.tall {
        grid-column: 1;
        grid-row: 1;
        aspect-ratio: 4/3;
    }
    
    .gallery-container > div {
        padding: 1rem;
    }
}