
/*----------------------------------------------------- countries page intro--------------------------------------------------------------------*/

.contentcontainer {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding-top: 0;
    text-align: center; 
}

.countrytitle {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 50px;
}

.contentrow {
    display: flex;
    align-items: center;
    gap: 20px;
}

.textbox {
    flex: 2;               
    text-align: justify;
    font-size: 15px;
    line-height: 1.5;
}


.imagebox {
    flex: 2;              
    display: flex;
    justify-content: flex-end;
}

/*------------------------------------------------------------------------End countries page intro ------------------------------------------------------------------*/


/* ---------------------------------------------------------------------------- Food section-------------------------------------------------------------------------*/

.foods-section {
    padding: 80px 20px 100px;
    background-color: #f7f7f7;
}

.foods-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.foods-title {
    text-align: center;
    font-size: 32px;
    margin: 0 0 60px;
    font-family: 'Times New Roman', Times, serif;
}

.foods-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.food-card {
    width: 320px;
    height: 200px;
    perspective: 1000px;
    cursor: pointer;
}

.food-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.food-card.is-flipped .food-card-inner {
    transform: rotateY(180deg);
}

.food-card-front,
.food-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.food-card-front {
    overflow: hidden;
}

.food-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.70;
}

.food-card-front h3 {
    position: absolute;
    z-index: 3;
    color: white;
    margin: 0;
    font-size: 22px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0);
    padding: 10px 18px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.food-card-front:hover h3 {
    background: rgba(0,0,0,0.85);
}

.food-card-back {
    background: #222;
    color: white;
    transform: rotateY(180deg);
    font-size: 14px;
    line-height: 1.5;
}

/*------------------------------------------------------------------------end food section------------------------------------------------------*/


/*------------------------------------------------------------------------MAIN ATTRACTIONS-------------------------------------------------------------------*/

.attractions-section {
    padding: 80px 20px 100px;
    background-color: #f7f7f7;
}

.attractions-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.attractions-title {
    text-align: center;
    font-size: 32px;
    margin: 0 0 60px;
    font-family: 'Times New Roman', Times, serif;
}

.attractions-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.attraction-card {
    width: 320px;
    height: 200px;
    perspective: 1000px;
    cursor: pointer;
}

.attraction-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.attraction-card.is-flipped .attraction-card-inner {
    transform: rotateY(180deg);
}

.attraction-card-front,
.attraction-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.attraction-card-front {
    overflow: hidden;
}

.attraction-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.70;          
}

.attraction-card-front h3 {
    position: absolute;
    z-index: 3;
    color: white;
    margin: 0;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0,0,0,0.8);

    background: rgba(0,0,0,0);   
    padding: 10px 18px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.attraction-card-front:hover h3 {
    background: rgba(0,0,0,0.85);
}

.attraction-card-back {
    background: #222;
    color: white;
    transform: rotateY(180deg);
    font-size: 14px;
    line-height: 1.5;
}

/*------------------------------------------------------------------------End  Main attractions-------------------------------------------------------------*/

/*----------------------------------------------------------------------------Music section---------------------------------------------------------------------*/

.songs-section {
    padding: 80px 20px 100px;
    background-color: #f7f7f7;
}

.songs-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.songs-title {
    text-align: center;
    font-size: 32px;
    margin: 0 0 60px;
    font-family: 'Times New Roman', Times, serif;
}

.songs-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARDS */
.music-card {
    width: 320px;
    height: 200px;
    perspective: 1000px;
    cursor: pointer;
}

.music-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.music-card.is-flipped .music-card-inner {
    transform: rotateY(180deg);
}

.music-card-front,
.music-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.music-card-front {
    overflow: hidden;
}

.music-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.70;
}

.music-card-front h3 {
    position: absolute;
    z-index: 3;
    color: white;
    margin: 0;
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0,0,0,0.8);

    background: rgba(0,0,0,0);
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.music-card-front:hover h3 {
    background: rgba(0,0,0,0.85);
}

.music-card-back {
    background: #222;
    color: white;
    transform: rotateY(180deg);
    font-size: 14px;
    line-height: 1.5;
}

/*---------------------------------------------------------------------End music section-----------------------------------------------------------------------*/

html {
    scroll-behavior: smooth;
}

/*-----------------------------------------------------------------------Back to home-------------------------------------------------------------------------------*/

.backtohomebeginning {
    margin-top: 25px;   
    margin-left: 20px;
}

.backtohomebeginning a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 16px;
    background: rgba(150, 150, 150, 0.25);
    color: #111;
    text-decoration: none;
    font-size: 15px;
}

.backtohomebeginning a:hover {
    background: rgba(150, 150, 150, 0.4);
}

.backtohome {
    padding: 20px;
    text-align: center;
}

.backtohome a {
    display: inline-block;              
    font-size: 15px;
    text-decoration: none;
    color: #111;
    padding: 8px 14px;
    border-radius: 14px;                
    background: rgba(120, 120, 120, 0.17); 

}

.backtohome a:hover {
    background: rgba(120, 120, 120, 0.333);  
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

/*-----------------------------------------------------------------------End Back to home-------------------------------------------------------------------------------*/


