:root {
    --primary: #00a8cc;
    --primary-dark: #008bab;
    --secondary: #f4f7f6;
    --text: #333;
    --light-text: #666;
    --white: #ffffff;
    --accent: #ff6b6b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--secondary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../images/hero_bg.jpg');
    /* Need a hero bg */
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Tours Grid */
.products-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--primary-dark);
}

/* Footer */
footer {
    background: #2c3e50;
    color: var(--white);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}/ *   T o u r   C a r d s   ( t o u r s . p h p )   * /  
 . t o u r - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i l l ,   m i n m a x ( 2 8 0 p x ,   1 f r ) ) ;  
         g a p :   3 0 p x ;  
 }  
  
 . t o u r - c a r d   {  
         b a c k g r o u n d :   # f f f ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         o v e r f l o w :   h i d d e n ;  
         b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ,   b o x - s h a d o w   0 . 3 s   e a s e ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
 }  
  
 . t o u r - c a r d : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ;  
         b o x - s h a d o w :   0   1 0 p x   2 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ;  
 }  
  
 . t o u r - i m a g e   {  
         p o s i t i o n :   r e l a t i v e ;  
         h e i g h t :   2 5 0 p x ;  
         / *   F i x e d   h e i g h t   f o r   u n i f o r m i t y   * /  
         o v e r f l o w :   h i d d e n ;  
 }  
  
 . t o u r - i m a g e   i m g   {  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         o b j e c t - f i t :   c o v e r ;  
         / *   E n s u r e s   i m a g e   c o v e r s   a r e a   w i t h o u t   d i s t o r t i o n   * /  
         t r a n s i t i o n :   t r a n s f o r m   0 . 5 s   e a s e ;  
 }  
  
 . t o u r - c a r d : h o v e r   . t o u r - i m a g e   i m g   {  
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ;  
 }  
  
 . t o u r - p r i c e   {  
         p o s i t i o n :   a b s o l u t e ;  
         b o t t o m :   1 5 p x ;  
         r i g h t :   1 5 p x ;  
         b a c k g r o u n d :   v a r ( - - p r i m a r y ) ;  
         c o l o r :   # f f f ;  
         p a d d i n g :   5 p x   1 5 p x ;  
         b o r d e r - r a d i u s :   2 0 p x ;  
         f o n t - w e i g h t :   6 0 0 ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         b o x - s h a d o w :   0   2 p x   5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ;  
 }  
  
 . t o u r - c o n t e n t   {  
         p a d d i n g :   2 0 p x ;  
         f l e x - g r o w :   1 ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
 }  
  
 . t o u r - t i t l e   {  
         f o n t - s i z e :   1 . 2 r e m ;  
         m a r g i n - b o t t o m :   1 0 p x ;  
         f o n t - w e i g h t :   7 0 0 ;  
         l i n e - h e i g h t :   1 . 4 ;  
 }  
  
 . t o u r - t i t l e   a   {  
         c o l o r :   v a r ( - - t e x t ) ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         t r a n s i t i o n :   c o l o r   0 . 3 s ;  
 }  
  
 . t o u r - t i t l e   a : h o v e r   {  
         c o l o r :   v a r ( - - p r i m a r y ) ;  
 }  
  
 . t o u r - m e t a   {  
         m a r g i n - b o t t o m :   1 5 p x ;  
         c o l o r :   # 7 7 7 ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   1 0 p x ;  
 }  
  
 . b t n - o u t l i n e   {  
         d i s p l a y :   b l o c k ;  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   1 0 p x ;  
         t e x t - a l i g n :   c e n t e r ;  
         b o r d e r :   2 p x   s o l i d   v a r ( - - p r i m a r y ) ;  
         b o r d e r - r a d i u s :   6 p x ;  
         c o l o r :   v a r ( - - p r i m a r y ) ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         f o n t - w e i g h t :   6 0 0 ;  
         t r a n s i t i o n :   a l l   0 . 3 s ;  
         m a r g i n - t o p :   a u t o ;  
         / *   P u s h e s   b u t t o n   t o   b o t t o m   * /  
 }  
  
 . b t n - o u t l i n e : h o v e r   {  
         b a c k g r o u n d :   v a r ( - - p r i m a r y ) ;  
         c o l o r :   # f f f ;  
 }  
 
/* Responsive Layout for Tours Page */
.tours-page-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}
@media (max-width: 768px) {
    .tours-page-layout { grid-template-columns: 1fr; }
    .sidebar { margin-bottom: 20px; }
}
.tour-image a { display: block; height: 100%; }
.tour-image img { width: 100%; height: 100%; object-fit: cover; }


/* Simple Tour Grid Layout */
.simple-tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.simple-tour-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.simple-tour-card:hover {
    transform: translateY(-5px);
}

.simple-tour-card .card-image {
    height: 250px;
    overflow: hidden;
}

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

.simple-tour-card:hover .card-image img {
    transform: scale(1.05);
}

.simple-tour-card .card-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.simple-tour-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.simple-tour-card h3 a {
    color: #333;
    text-decoration: none;
}

.simple-tour-card .price {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.simple-tour-card .btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    align-self: center;
}

.simple-tour-card .btn:hover {
    background: #1a9cb7;
}

@media (max-width: 768px) {
    .simple-tour-grid {
        grid-template-columns: 1fr;
    }
}


/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info-card h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item .icon {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-right: 15px;
    flex-shrink: 0;
}

.info-item .details strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.info-item .details p {
    color: #666;
    margin: 0;
}

.info-item .details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item .details a:hover {
    color: var(--primary);
}

.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-card h3 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
}

.btn-full {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
}

.map-section {
    line-height: 0; /* Remove extra space below iframe */
}


/* Blog Page Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-image {
    height: 240px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.btn-text i {
    margin-left: 8px;
    transition: margin-left 0.3s;
}

.btn-text:hover {
    color: #1a9cb7;
}

.btn-text:hover i {
    margin-left: 12px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

